brewdrivers 0.17.0

Brewkit drivers
Documentation
//! Default values for things

/// Default configuration file
///
/// You are strongly encouraged to use this file instead of any others
pub fn config_file() -> &'static str {
    "/etc/NavasotaBrewing/rtu_conf.yaml"
}

/// Testing configuration file
pub fn test_config_file() -> &'static str {
    "/etc/NavasotaBrewing/test_conf.yaml"
}

pub fn default_command_retries() -> u8 {
    1
}

pub fn default_retry_delay() -> u64 {
    150
}