forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
15 lines (14 loc) · 620 Bytes
/
Copy pathmod.rs
File metadata and controls
15 lines (14 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Narrow context traits and the aggregate [`Database`] supertrait.
//!
//! Design rationale and revisit criteria:
//! [`20260429000000_keep_database_as_aggregate_supertrait`](../../../../docs/adrs/20260429000000_keep_database_as_aggregate_supertrait.md).
pub mod auth_keys;
pub mod database;
pub mod schema;
pub mod torrent_metrics;
pub mod whitelist;
pub use auth_keys::{AuthKeyStore, MockAuthKeyStore};
pub use database::Database;
pub use schema::{MockSchemaMigrator, SchemaMigrator};
pub use torrent_metrics::{MockTorrentMetricsStore, TorrentMetricsStore};
pub use whitelist::{MockWhitelistStore, WhitelistStore};