21 lines
394 B
Rust
21 lines
394 B
Rust
//! SeaORM Rocket support crate.
|
|
#![deny(missing_docs)]
|
|
|
|
/// Re-export of the `figment` crate.
|
|
#[doc(inline)]
|
|
pub use rocket::figment;
|
|
|
|
pub use rocket;
|
|
|
|
mod database;
|
|
mod error;
|
|
mod pool;
|
|
mod config;
|
|
|
|
pub use self::database::{Connection, Database, Initializer};
|
|
pub use self::error::Error;
|
|
pub use self::pool::{Pool, MockPool};
|
|
pub use self::config::Config;
|
|
|
|
pub use sea_orm_rocket_codegen::*;
|