pub mod storage; use crate::Mutex; use crate::network::wifi::Wifi; use crate::peripherals::storage::store::Store; use esp_hal::rtc_cntl::Rtc; pub struct Peripherals { pub store: Mutex, pub rtc: Rtc<'static>, pub wifi: Mutex, }