1 2 3 4 5 6 7 8 9 10 11 12
use anyhow::Result; use clap::Parser; use jepa::{run_command, run_tui, Cli}; fn main() -> Result<()> { let cli = Cli::parse(); match cli.command { Some(cmd) => run_command(cmd), None => run_tui(), } }