use std::io; use time_protocol::Server; fn main() -> io::Result<()> { let server = Server::default(); server.start()?; Ok(()) }