19 lines
527 B
Rust
19 lines
527 B
Rust
//! Shared data layer: SeaORM entities and their hand-written model extensions.
|
|
//!
|
|
//! `_entities/` contains auto-generated SeaORM code (regenerated as a unit).
|
|
//! The sibling files contain hand-written model impls: ActiveModelBehavior,
|
|
//! finder methods, business logic, and query helpers.
|
|
|
|
pub mod _entities;
|
|
|
|
pub mod audit_logs;
|
|
pub mod categories;
|
|
pub mod order_items;
|
|
pub mod orders;
|
|
pub mod product_images;
|
|
pub mod product_product_tags;
|
|
pub mod product_tags;
|
|
pub mod products;
|
|
pub mod shipping_methods;
|
|
pub mod users;
|