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