Skip to content

Instantly share code, notes, and snippets.

@AntonStoeckl
Last active May 4, 2020 14:33
Show Gist options
  • Save AntonStoeckl/826e6fd1017eec2955c6653de6d3410d to your computer and use it in GitHub Desktop.
Save AntonStoeckl/826e6fd1017eec2955c6653de6d3410d to your computer and use it in GitHub Desktop.
Example for my iDDD with Go blog article series at https://medium.com/@TonyBologni
package customer
import (
"github.com/AntonStoeckl/go-iddd/service/shared"
"github.com/cockroachdb/errors"
)
func assertNotDeleted(currentState currentState) error {
if currentState.isDeleted {
return errors.Mark(errors.New("customer was deleted"), shared.ErrNotFound)
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment