db/herodb/src/circle/models/mod.rs
2025-04-03 08:47:35 +02:00

9 lines
275 B
Rust

// Declare the models submodule
#[path = "models/lib.rs"] // Tell compiler where to find models module source
pub mod models;
// Declare the db submodule with the new database implementation
#[path = "db/mod.rs"] // Tell compiler where to find db module source
pub mod db;