heldar_kernel/models/mod.rs
1//! Database row models and API request/response types for the kernel.
2//!
3//! The models are partitioned into domain submodules for readability and then
4//! re-exported flat, so every existing `crate::models::Foo` path keeps
5//! resolving unchanged.
6
7mod auth;
8mod backup;
9mod camera;
10mod devices;
11mod perception;
12mod scheduling;
13mod webhooks;
14
15pub use auth::*;
16pub use backup::*;
17pub use camera::*;
18pub use devices::*;
19pub use perception::*;
20pub use scheduling::*;
21pub use webhooks::*;