stormchaser-cli 1.3.2

A robust, distributed workflow engine for event-driven and human-triggered workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Thin binary wrapper for the Stormchaser CLI.
//!
//! This executable simply imports and runs the core logic from the `stormchaser_cli` library.

use anyhow::Result;
use clap::Parser;
use stormchaser_cli::{run_cli, Cli};

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();
    run_cli(cli).await
}