greentic-flow-builder 0.1.0

AI-powered Adaptive Card flow builder with visual graph editor and demo runner
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use greentic_flow_builder::cli::Cli;
use greentic_flow_builder::run;

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