use lazy_static::lazy_static;
use std::time::Duration;
pub(crate) const MULTIPLIER: f64 = 1.1;
lazy_static! {
pub(crate) static ref MAX_INTERVAL: Duration = Duration::from_secs(5);
pub(crate) static ref MAX_ELAPSED_TIME: Option<Duration> = Some(Duration::from_secs(5 * 60));
}