eclaw 0.0.2

Personal AI assistant powered by Elph
mod default;
pub mod version;

use crate::app::ExitCode;
use clap::{Parser, Subcommand};

/// Personal AI assistant powered by Elph
#[derive(Parser)]
#[command(name = "eclaw", about, disable_version_flag = true)]
pub struct Cli {
    /// Print version information
    #[arg(short = 'V', long = "version", help = "Print version information")]
    pub version: bool,

    #[command(subcommand)]
    pub command: Option<Commands>,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Print version information
    Version,
}

pub fn run(cli: &Cli) -> ExitCode {
    match &cli.command {
        None => default::handle(),
        Some(Commands::Version) => version::handle(),
    }
}