pub mod config;
#[cfg(feature = "daemon")]
pub mod scraper;
#[cfg(feature = "daemon")]
pub mod state;
pub mod table;
pub use config::CloudEnergyConfig;
#[cfg(feature = "daemon")]
pub use scraper::spawn_cloud_scraper;
#[cfg(feature = "daemon")]
pub use state::CloudEnergyState;
#[must_use]
pub fn embedded_specpower_vintage() -> &'static str {
table::SPECPOWER_VINTAGE
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn embedded_vintage_matches_table_const() {
assert_eq!(embedded_specpower_vintage(), table::SPECPOWER_VINTAGE);
}
}