use crate::command::Executable;
mod list;
pub use list::List;
#[derive(Debug, clap::Subcommand)]
pub enum Node {
List(List),
}
impl Executable for Node {
async fn execute(self) -> eyre::Result<()> {
match self {
Node::List(cmd) => cmd.execute().await,
}
}
}