9 lines
275 B
Rust
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;
|
|
|