1
2
3
4
5
6
7
8
9
10
11
//! database module.
//! This module contains the entities definition tied with database
//! representation with their associated providers.
pub mod migration;
pub(crate) mod query;
pub mod record;
pub mod repository;
#[cfg(test)]
pub(crate) mod test_helper;
#[cfg(test)]
pub(crate) mod tests;