Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Created December 30, 2022 23:10
Show Gist options
  • Save dipeshhkc/bbbf70435ab4501cf0238dd819a492ad to your computer and use it in GitHub Desktop.
Save dipeshhkc/bbbf70435ab4501cf0238dd819a492ad to your computer and use it in GitHub Desktop.
//FailOnError -> handles error
func FailOnError(err error, msg string) {
if err != nil {
log.Fatalf("%s: %s", msg, err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment