14 lines
338 B
Rust
14 lines
338 B
Rust
pub mod family;
|
|
pub mod category;
|
|
pub mod expense;
|
|
pub mod user;
|
|
pub mod shopping_item;
|
|
pub mod invite_link;
|
|
|
|
pub use family::Entity as Family;
|
|
pub use category::Entity as Category;
|
|
pub use expense::Entity as Expense;
|
|
pub use user::Entity as User;
|
|
pub use shopping_item::Entity as ShoppingItem;
|
|
pub use invite_link::Entity as InviteLink;
|