Skip to content

Instantly share code, notes, and snippets.

@TBXark
Created November 6, 2021 08:37
Show Gist options
  • Save TBXark/74065c92455b94e1fa2df4637eaffe6c to your computer and use it in GitHub Desktop.
Save TBXark/74065c92455b94e1fa2df4637eaffe6c to your computer and use it in GitHub Desktop.
Safe goroutine
func Go(f func()) {
go func() {
defer func() {
if err := recover(); err != nil {
fmt.Println("Recover:", err)
}
}()
f()
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment