pub mod peers;
pub mod start;
pub mod status;
#[derive(Debug)]
pub enum Action {
Start {
config: Option<String>,
bind: String,
peers: Option<String>,
node_id: Option<String>,
verbose: bool,
},
Status {
node: Option<String>,
verbose: bool,
watch: bool,
interval_ms: u64,
},
Peers { format: String, verbose: bool },
}