vanikam/src/inventory/domain/mod.rs
Aravinth Manivannan 987b48a3df
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
feat: update Customization aggregate cmd, event and service
2024-07-16 20:56:47 +05:30

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;