time-protocol 1.1.1

TIME protocal written in Rust
Documentation
use std::io;
use time_protocol::Server;

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