Skip to content

Instantly share code, notes, and snippets.

@cn0047
Last active October 26, 2018 20:54
Show Gist options
  • Select an option

  • Save cn0047/9547d05a272d54e0a17f3e6fcb51c750 to your computer and use it in GitHub Desktop.

Select an option

Save cn0047/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