Skip to content

Commit

Permalink
Merge pull request #8 from tonybka/feature/tonybka/domain-event-improve
Browse files Browse the repository at this point in the history
Add even handler interface
  • Loading branch information
tonybka authored Mar 14, 2023
2 parents 831c913 + 32486c9 commit 18ea5fc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions domain/event/domain_event_handler.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package event

type IDomainEvenHandler interface {
Notify(event IBaseDomainEvent) error
}

0 comments on commit 18ea5fc

Please sign in to comment.