1use clap::Args; 2use std::path::PathBuf; 3use crate::mds::config; 4 5#[derive(Args)] 6pub struct ConfigArgs { 7 action: String, 8 key: Option<String>, 9 value: Option<String>, 10}