1 2 3 4 5 6 7
//this.me/crate/src/db/pg/mod.rs // re-exporta run_migrations y PgStore. #![cfg(feature = "pg")] pub mod migrate; pub mod store; pub use migrate::run_migrations; pub use store::PgStore;