Files
goose/crates/goose-server/src/main.rs
2025-05-27 10:36:27 -07:00

45 lines
791 B
Rust

mod commands;
mod configuration;
mod error;
mod logging;
mod openapi;
mod routes;
mod state;
use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
struct Cli {
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
/// Run the agent server
Agent,
/// Run the MCP server
Mcp {
/// Name of the MCP server type
name: String,
},
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let cli = Cli::parse();
match &cli.command {
Commands::Agent => {
commands::agent::run().await?;
}
Commands::Mcp { name } => {
commands::mcp::run(name).await?;
}
}
Ok(())
}