Created
May 4, 2020 13:57
-
-
Save AntonStoeckl/d95b0f89fc1252a1f562b4b304eece5f to your computer and use it in GitHub Desktop.
Example for my iDDD with Go blog article series at https://medium.com/@TonyBologni
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package es | |
type DomainEvent interface { | |
Meta() EventMeta | |
IsFailureEvent() bool | |
FailureReason() error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment