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 mod record;
8pub mod repository;
9#[cfg(test)]
10pub(crate) mod test_helper;