High-performance implementation of plcbundle written in Rust
at main 10 lines 219 B view raw
1// Server configuration 2 3#[derive(Clone)] 4pub struct ServerConfig { 5 pub sync_mode: bool, 6 pub sync_interval_seconds: u64, 7 pub enable_websocket: bool, 8 pub enable_resolver: bool, 9 pub version: String, 10}