domain events: DomainEvent enum w/ ID-only variants

This commit is contained in:
2026-07-12 01:29:40 +02:00
parent 6d12ac4c5e
commit 87e7d85239
3 changed files with 126 additions and 24 deletions

View File

@@ -1,8 +1,10 @@
pub mod errors;
pub mod events;
pub mod models;
pub mod ports;
pub mod value_objects;
pub use errors::{DomainError, DomainResult};
pub use events::DomainEvent;
pub use models::*;
pub use value_objects::*;