28 lines
720 B
Rust
28 lines
720 B
Rust
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
// aggregates
|
|
pub mod category_aggregate;
|
|
pub mod customization_aggregate;
|
|
pub mod product_aggregate;
|
|
pub mod stock_aggregate;
|
|
pub mod store_aggregate;
|
|
|
|
// commands
|
|
pub mod add_category_command;
|
|
pub mod add_customization_command;
|
|
pub mod add_product_command;
|
|
pub mod add_store_command;
|
|
pub mod commands;
|
|
pub mod update_customization_command;
|
|
pub mod update_product_command;
|
|
|
|
// events
|
|
pub mod category_added_event;
|
|
pub mod customization_added_event;
|
|
pub mod customization_updated_event;
|
|
pub mod events;
|
|
pub mod product_added_event;
|
|
pub mod product_updated_event;
|
|
pub mod store_added_event;
|