tinycongress_api/identity/repo/mod.rs
1//! Repository layer for identity persistence
2
3pub mod accounts;
4
5pub use accounts::{
6 create_account_with_executor, AccountRepo, AccountRepoError, CreatedAccount, PgAccountRepo,
7};
8
9// Re-export mock for use in tests across the crate and integration tests
10#[cfg(any(test, feature = "test-utils"))]
11pub mod mock {
12 pub use super::accounts::mock::MockAccountRepo;
13}