1//! database module.
2//! This module contains the entities definition tied with database
3//! representation with their associated queries.
45pub mod migration;
6pub(crate) mod query;
7pub(crate) mod record;
8mod repository;
910pub use repository::*;
11#[cfg(test)]
12pub(crate) mod test_helper;