outbox
Transactional outbox to guarantee event delivery on crash.
event-bus adds an in-process domain event bus to your Go service for decoupled communication between components.
Use event-bus when you want domain components to communicate without direct coupling. A OrderPlaced event lets the billing, notification, and inventory components react independently without the order service knowing about them. Pair with outbox if events must survive process crashes.
verikt new my-service --language go --cap event-bus# or add to an existing service:verikt add event-busoutbox
saga
ddd