This commit is contained in:
2026-09-16 12:07:30 +01:00
parent 6a62d14755
commit fe07022015
3 changed files with 110 additions and 14 deletions
@@ -0,0 +1,8 @@
//! Battery module messages.
/// A module-local message for the battery tile (bar/popup interactions).
#[derive(Clone)]
pub enum BatteryAction {
/// Open the battery info popup.
OpenPopup,
}
@@ -1,7 +1,9 @@
//! Messages owned by bar modules.
mod battery;
mod clock;
mod weather;
pub use battery::*;
pub use clock::*;
pub use weather::*;