mithril_aggregator/event_store/database/
mod.rs

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