add House struct

This commit is contained in:
4 changed files with 103 additions and 12 deletions

View File

@@ -1,8 +1,11 @@
mod device;
mod house;
mod power_socket;
mod room;
mod thermometer;
pub use device::Device;
pub use house::House;
pub use power_socket::PowerSocket;
pub use room::Room;
pub use thermometer::Thermometer;