Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 24, 2023 11:50
Show Gist options
  • Save yumed15/da562cd81455ab6dd2af08470d876d13 to your computer and use it in GitHub Desktop.
Save yumed15/da562cd81455ab6dd2af08470d876d13 to your computer and use it in GitHub Desktop.
var once sync.Once
var globalSetting string
func initializeGlobals() {
globalSetting = readSettingFromConfig()
}
func getGlobalSetting() string {
once.Do(initializeGlobals)
return globalSetting
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment