1 2 3 4 5 6 7 8 9 10 11 12
pub mod api; pub mod mcp; use clap::Subcommand; #[derive(Subcommand)] pub enum Command { /// Start the OpenAI-compatible proxy server. Api(api::ApiArgs), /// Start the MCP server exposing LLM operations as tools. Mcp(mcp::McpArgs), }