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.
 
 
 
 
 
 

10 lines
259 B

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();
}