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