progress-pile/progress-pile-client/src/cli/default.rs
2025-05-13 19:43:52 +09:00

16 lines
No EOL
257 B
Rust

use clap::{Args, Subcommand};
#[derive(Args, Clone, Debug)]
pub struct DefaultArgs {
#[arg(short, long)]
pub note: String,
pub category: String,
pub quantity: i32,
}
impl DefaultArgs {
pub async fn run (self) {
todo!()
}
}