mezame 0.8.42

An ACP client that bridges a local agent (Kiro CLI, Claude Agent CLI, Gemini CLI, Codex, ...) to a browser UI over WebSockets.
1
2
3
4
5
6
7
8
//! Thin CLI shim. The real entry point is `mezame::run()`; the crate is
//! split into a library so tests in `tests/` can reach internals.

use anyhow::Result;

fn main() -> Result<()> {
    mezame::run()
}