You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
226 B

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