Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 24, 2023 11:53
Show Gist options
  • Save yumed15/5f5ad3459d3903d1cb97fe024ee19321 to your computer and use it in GitHub Desktop.
Save yumed15/5f5ad3459d3903d1cb97fe024ee19321 to your computer and use it in GitHub Desktop.
var once sync.Once
var cleanupDone bool
func cleanupResources() {
// Perform resource cleanup here.
cleanupDone = true
}
func teardown() {
once.Do(cleanupResources)
// Other teardown logic here.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment