You've already forked AstralRinth
forked from didirus/AstralRinth
* Expose utilities for setting up the database * Expose migrator directly * Make some test utils publicly accessible * expose migrator * more test fixture utils * more test fixture utils * more test fixture utils * fix * fix lint
11 lines
260 B
Rust
11 lines
260 B
Rust
pub mod models;
|
|
mod postgres_database;
|
|
pub mod redis;
|
|
pub use models::DBImage;
|
|
pub use models::DBProject;
|
|
pub use models::DBVersion;
|
|
pub use postgres_database::{
|
|
MIGRATOR, ReadOnlyPgPool, check_for_migrations, connect_all,
|
|
register_and_set_metrics,
|
|
};
|