dora-cli 0.5.0

`dora` goal is to be a low latency, composable, and distributed data flow.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod status;

use super::Executable;
use status::Status;

/// System management commands
#[derive(Debug, clap::Subcommand)]
pub enum System {
    Status(Status),
}

impl Executable for System {
    async fn execute(self) -> eyre::Result<()> {
        match self {
            System::Status(args) => args.execute().await,
        }
    }
}