mithril_aggregator/dependency_injection/builder/support/
mod.rs

1//! Gathers builders for the low level components of the application such as compatibility
2//! between nodes, the observability of the aggregator process, stores for the app data, and
3//! the upkeep of the app.
4
5mod compatibility;
6mod observability;
7mod sqlite;
8mod stores;
9mod upkeep;