Private
Public Access
1
0
Files
Kordophone/core/kordophone-db/src/lib.rs

15 lines
214 B
Rust
Raw Normal View History

pub mod database;
2024-12-08 21:12:17 -08:00
pub mod models;
pub mod repository;
pub mod schema;
pub mod settings;
2024-12-08 21:12:17 -08:00
#[cfg(test)]
2024-12-21 17:50:47 -08:00
mod tests;
2025-06-18 15:02:04 -07:00
pub mod target {
pub static REPOSITORY: &str = "repository";
}
2025-06-06 16:39:31 -07:00
pub use repository::Repository;