event-bus
In-process event bus for dispatching DomainEvents.
ddd adds Domain-Driven Design building blocks to your Go service with base types for aggregates, value objects, and domain events.
Use ddd when your service has complex business logic that benefits from explicit domain modeling. The base types enforce DDD patterns — aggregates own their consistency boundaries, value objects are immutable, and domain events make significant occurrences explicit.
Suggests: event-bus, repository, cqrs
verikt new my-service --language go --cap ddd# or add to an existing service:verikt add dddevent-bus
repository
cqrs