dotfiles/sync-runner/src/action.rs
2025-02-26 03:05:18 +01:00

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>,
},
}