Files
rust-otus/smart-house/src/lib.rs

8 lines
141 B
Rust

mod device;
mod power_socket;
mod thermometer;
pub use device::Device;
pub use power_socket::PowerSocket;
pub use thermometer::Thermometer;