1use std::ops::RangeInclusive; 2 3pub const TIMEOUT_LIMITS: RangeInclusive<u64> = 60..=43200; 4 5/// 2 weeks - 2 months 6pub const SIGNAL_OUTAGE_LIMITS: RangeInclusive<u64> = 1209600..=5184000;