1
2
3
4
5
6
7
8
9
10
//! database module.
//! This module contains the entities definition tied with database
//! representation with their associated providers.

pub mod migration;
pub(crate) mod provider;
pub mod record;
pub mod repository;
#[cfg(test)]
pub(crate) mod test_helper;