Created
February 9, 2023 21:21
-
-
Save brurucy/b51174793662f045328dc5aaf6f8f12b to your computer and use it in GitHub Desktop.
memoir
This file contains 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
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