The Go programming language specification states: "To import a package solely for its side-effects (initialization), use the blank identifier as explicit package name."
For example:
import _ "foo/bar"
I am having difficulty imagining a use case for this construct. The accepted answer for Usage of the `import` statement mentions a use case where a database driver may be loaded without the need for the importing program to use any of the exported functions of that package, but it leaves out the details to reader's imagination.
Are there real life examples (with code snippets and explanation) that illustrate this use case?