10 lines
132 B
Rust
10 lines
132 B
Rust
//! Messages owned by bar modules.
|
|
|
|
mod battery;
|
|
mod clock;
|
|
mod weather;
|
|
|
|
pub use battery::*;
|
|
pub use clock::*;
|
|
pub use weather::*;
|