Skip to content

Instantly share code, notes, and snippets.

@cn007b
Last active October 26, 2018 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cn007b/9547d05a272d54e0a17f3e6fcb51c750 to your computer and use it in GitHub Desktop.
Save cn007b/9547d05a272d54e0a17f3e6fcb51c750 to your computer and use it in GitHub Desktop.
GO ValueObject - example 1
func CreateNewUser() {
name := ...
email := ...
// ...
db.SaveUser(name, email)
mailer.SendEmail(name, email)
search.AddUser(name, email)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment