1 2 3 4 5 6 7 8 9
use msp::{Conf, MspErr}; fn main() -> Result<(), MspErr> { let server = Conf::create_with_port("www.example.com", 25565); println!("{}", server.query_full()?); Ok(()) }