1 2 3 4 5 6 7 8 9 10
#[derive(Debug, Clone, Default)] pub struct TimeBasedMCConfig { pub enabled: bool, pub gap_threshold_minutes: u32, pub keep_recent: u32, } pub fn get_time_based_mc_config() -> TimeBasedMCConfig { TimeBasedMCConfig::default() }