git-subtree-dir: core git-subtree-mainline:a07f3dcd23git-subtree-split:b0dfc4146c
15 lines
214 B
Rust
15 lines
214 B
Rust
pub mod database;
|
|
pub mod models;
|
|
pub mod repository;
|
|
pub mod schema;
|
|
pub mod settings;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub mod target {
|
|
pub static REPOSITORY: &str = "repository";
|
|
}
|
|
|
|
pub use repository::Repository;
|