1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00
Files
ojrc/rc_database/src/lib.rs
2025-10-31 22:41:33 -04:00

13 lines
168 B
Rust

mod migration;
pub use migration::Migrator;
pub mod schema;
mod wrapper;
pub use wrapper::Database;
mod metrics;
pub use metrics::DatabaseMetrics;
pub use sea_orm;