fxrs 0.0.7

A compact, provider-extensible coding agent with a fast terminal interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::process::ExitCode;

fn main() -> ExitCode {
    match fx_tui::run_cli(std::env::args_os().skip(1)) {
        Ok(()) => ExitCode::SUCCESS,
        Err(error) => {
            eprintln!("fx-tui: {error}");
            ExitCode::FAILURE
        }
    }
}