actflow 0.1.2

A lightweight, event-driven workflow engine written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_prost_build::configure()
        .build_server(false) // only build client code
        .compile_protos(
            &["src/workflow/actions/agent/proto/agent.proto"],
            &["src/workflow/actions/agent/proto"],
        )?;
    Ok(())
}