PowerTools/backend/src/consts.rs

14 lines
452 B
Rust
Raw Normal View History

2022-08-26 22:00:43 +01:00
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";
pub const LIMITS_OVERRIDE_FILE: &str = "limits_override.json";
2023-07-04 03:00:18 +01:00
pub const MESSAGE_SEEN_ID_FILE: &str = "seen_message.bin";