taitan_orm/database/postgres/
mod.rs

1mod builder;
2mod database;
3
4mod transaction;
5pub mod api;
6pub (crate) mod generator;
7
8pub use database::PostgresDatabase;
9pub use transaction::PostgresTransaction;
10pub use builder::PostgresBuilder;
11
12pub mod prelude {
13    pub use crate::database::postgres::api::ReaderApi;
14    pub use crate::database::postgres::api::ReaderMutApi;
15    pub use crate::database::postgres::api::TemplateApi;
16    pub use crate::database::postgres::api::TemplateMutApi;
17    pub use crate::database::postgres::api::WriterApi;
18    pub use crate::database::postgres::api::WriterMutApi;
19    pub use crate::database::postgres::builder::PostgresBuilder;
20    pub use crate::database::postgres::database::PostgresDatabase;
21    pub use crate::database::postgres::transaction::PostgresTransaction;
22}