features.rs
1 //! Compile-time feature flags — on/off switches for subsystems. 2 3 pub mod telnet { 4 pub const ENABLED: bool = false; 5 } 6 7 pub mod provisioning { 8 pub const ENABLED: bool = false; 9 } 10 11 pub mod smtp { 12 pub const ENABLED: bool = false; 13 }