litecode 0.1.1

An ultra-lightweight Coding MCP server built with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;
use litecode::{cli::Cli, run};

#[tokio::main]
async fn main() {
    if let Err(error) = run(Cli::parse()).await {
        eprintln!("{error}");
        std::process::exit(1);
    }
}