task_rs/desktop/args/
mod.rs1pub mod command;
2
3pub use command::Command;
4
5use structopt::StructOpt;
6
7#[derive(Debug, StructOpt)]
8#[structopt(name = "task-rs")]
9pub struct Args {
10 #[structopt(subcommand)]
11 pub command: Option<Command>,
12}