Files
AstralRinth/src/database/mod.rs
Geometrically b99f45874f Add more info to search route (#60)
* Add more info to search route:

* Run formatter
2020-09-06 08:19:53 -07:00

8 lines
171 B
Rust

pub mod models;
mod postgres_database;
pub use models::Mod;
pub use models::Version;
pub use postgres_database::check_for_migrations;
pub use postgres_database::connect;