greentic_flow_builder/
lib.rs1pub mod cli;
2pub mod deps;
3pub mod knowledge;
4pub mod orchestrate;
5pub mod ui;
6
7use cli::{Cli, Commands};
8
9pub async fn run(cli: Cli) -> anyhow::Result<()> {
10 match cli.command {
11 Commands::Ui(args) => {
12 deps::ensure_dependencies();
13 ui::launch(args).await
14 }
15 }
16}