Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 24, 2023 11:47
Show Gist options
  • Save yumed15/4bf00fa2d071f037e763fef63f90a032 to your computer and use it in GitHub Desktop.
Save yumed15/4bf00fa2d071f037e763fef63f90a032 to your computer and use it in GitHub Desktop.
var once sync.Once
var myResource *Resource
func initializeResource() {
myResource = createResource()
}
func getResource() *Resource {
once.Do(initializeResource)
return myResource
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment