Skip to content

Instantly share code, notes, and snippets.

@dhruvr
Created September 21, 2019 21:32
Show Gist options
  • Save dhruvr/20bf650dd041412b37280967b3ce1764 to your computer and use it in GitHub Desktop.
Save dhruvr/20bf650dd041412b37280967b3ce1764 to your computer and use it in GitHub Desktop.
ioCloser.go
func Close(r io.Closer) {
err := r.Close()
if err != nil {
logger.Errorn("Problem while closing the connection", err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment