1//! mcps-server library 2 3pub fn run() -> Result<(), Box<dyn std::error::Error>> { 4 println!("mcps-server is running"); 5 Ok(()) 6}