dora-cli 1.0.0-rc.2

`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
use eyre::Context;

use super::Executable;

#[derive(Debug, clap::Args)]
/// Run runtime
pub struct Runtime;

impl Executable for Runtime {
    fn execute(self) -> eyre::Result<()> {
        // No tracing: Do not set the runtime in the cli.
        // ref: 72b4be808122574fcfda69650954318e0355cc7b cli::run
        dora_runtime::main().context("Failed to run dora-runtime")
    }
}