sea-orm 1.1.20

🐚 An async & dynamic ORM for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod baker;
pub mod bakery;
pub mod cake;
pub mod cakes_bakers;
pub mod customer;
pub mod lineitem;
pub mod order;
pub mod schema;
pub mod seed_data;

pub use baker::Entity as Baker;
pub use bakery::Entity as Bakery;
pub use cake::Entity as Cake;
pub use cakes_bakers::Entity as CakesBakers;
pub use customer::Entity as Customer;
pub use lineitem::Entity as Lineitem;
pub use order::Entity as Order;
pub use schema::*;