Skip to main content

agentics_persistence/
lib.rs

1#![cfg_attr(
2    test,
3    allow(
4        clippy::arithmetic_side_effects,
5        clippy::cast_possible_truncation,
6        clippy::cast_possible_wrap,
7        clippy::cast_sign_loss,
8        clippy::enum_glob_use,
9        clippy::expect_used,
10        clippy::indexing_slicing,
11        clippy::panic,
12        clippy::unwrap_used,
13        clippy::wildcard_imports,
14        reason = "unit tests use direct assertions and fixture indexing for concise failure diagnostics"
15    )
16)]
17
18mod auth;
19mod db;
20pub mod repositories;
21
22pub mod pool {
23    pub use crate::db::pool::*;
24}
25
26pub use repositories::*;