pub mod system_status;
use crate::core::config::Config;
pub struct V1 {
pub system_status: system_status::SystemStatusService,
}
impl V1 {
pub fn new(config: Config) -> Self {
Self {
system_status: system_status::SystemStatusService::new(config),
}
}
}