elph 0.0.7

Minimalist AI agent companion for coding
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod app;
mod cli;
mod command;
mod component;

use clap::Parser;

fn main() {
    let cli = cli::Cli::parse();

    if cli.version {
        std::process::exit(command::version::handle());
    }

    let code = command::run(&cli);
    std::process::exit(code);
}