progress-pile/progress-pile-client/src/cli/default.rs

16 lines
257 B
Rust
Raw Normal View History

2025-05-13 19:43:52 +09:00
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!()
}
}