appctl 0.2.1

One command. Any app. Full AI control. The universal AI CLI for any web app, database, or service.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use appctl::cli::Cli;
use clap::Parser;

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