10 lines
197 B
Rust
10 lines
197 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
pub enum Action {
|
|
/// Sync your device with dotfiles repository
|
|
Sync {
|
|
#[arg(short, long)]
|
|
config_path: Option<String>,
|
|
},
|
|
}
|