use std::net::Ipv4Addr; use uuid::Uuid; pub const MASTER_SERVER: Ipv4Addr = Ipv4Addr::LOCALHOST; //Ipv4Addr::new(3,9,16,40) pub const MASTER_PORT: u16 = 63714; pub type Uid = String; lazy_static! { pub static ref UID: Uid = Uuid::new_v4().to_string(); }