Skip to content

Instantly share code, notes, and snippets.

@brurucy
Created February 9, 2023 21:21
Show Gist options
  • Save brurucy/b51174793662f045328dc5aaf6f8f12b to your computer and use it in GitHub Desktop.
Save brurucy/b51174793662f045328dc5aaf6f8f12b to your computer and use it in GitHub Desktop.
memoir
func New(opts …Option) *Obj {
obj := new(Obj)
for _, opt := range opts {
opt(obj)
}
return obj
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment