9 lines
328 B
Rust
9 lines
328 B
Rust
pub const PORT: u16 = 44443;
|
|
|
|
pub const PACKAGE_NAME: &'static str = env!("CARGO_PKG_NAME");
|
|
pub const PACKAGE_VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub const DEFAULT_SETTINGS_FILE: &str = "default_settings.json";
|
|
pub const DEFAULT_SETTINGS_NAME: &str = "Main";
|
|
|
|
pub const LIMITS_FILE: &str = "limits_cache.json";
|