Skip to content

Instantly share code, notes, and snippets.

@sle-c
Last active December 14, 2019 23:28
Show Gist options
  • Save sle-c/4a60a68c741a8e6b797cf5381c01a630 to your computer and use it in GitHub Desktop.
Save sle-c/4a60a68c741a8e6b797cf5381c01a630 to your computer and use it in GitHub Desktop.
Defining Factory function and Object interface
type Object interface {
Close()
}
type Factory func() (Object, error)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment