mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 17:57:47 +03:00
11 lines
210 B
Rust
11 lines
210 B
Rust
pub mod query;
|
|
|
|
pub use migration;
|
|
pub use sea_orm;
|
|
|
|
pub mod entity {
|
|
pub use entity::*;
|
|
|
|
pub use entity::user::{ActiveModel as ActiveUser, Model as User, Entity as UserEntity, Column as UserColumn};
|
|
}
|