sea_orm_rocket/lib.rs
1//! SeaORM Rocket support crate.
2#![deny(missing_docs)]
3
4/// Re-export of the `figment` crate.
5#[doc(inline)]
6pub use rocket::figment;
7
8pub use rocket;
9
10mod config;
11mod database;
12mod error;
13mod pool;
14
15pub use self::config::Config;
16pub use self::database::{Connection, Database, Initializer};
17pub use self::error::Error;
18pub use self::pool::{MockPool, Pool};
19
20pub use sea_orm_rocket_codegen::*;