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.
|
use uuid::Uuid; |
|
|
|
pub const MASTER_SERVER: &str = "127.0.0.1"; //Ipv4Addr::new(3,9,16,40) |
|
pub const MASTER_PORT: u16 = 63714; |
|
|
|
lazy_static! { |
|
pub static ref UID: Uuid = Uuid::new_v4(); |
|
}
|
|
|