2025-04-25 15:42:46 -07:00
|
|
|
pub mod database;
|
2024-12-08 21:12:17 -08:00
|
|
|
pub mod models;
|
2025-04-25 15:42:46 -07:00
|
|
|
pub mod repository;
|
2024-12-14 19:03:27 -08:00
|
|
|
pub mod schema;
|
2025-04-25 15:42:46 -07:00
|
|
|
pub mod settings;
|
2024-12-08 21:12:17 -08:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2024-12-21 17:50:47 -08:00
|
|
|
mod tests;
|
2025-01-08 13:32:55 -08:00
|
|
|
|
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;
|