dora-cli 0.5.0-rc0

`dora` goal is to be a low latency, composable, and distributed data flow.
use crate::command::Executable;

mod list;

pub use list::List;

/// Manage and inspect dataflow nodes.
#[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,
        }
    }
}