Example
Package can have init
methods which are run only once before main.
package usefull
func init() {
// init code
}
If you just want to run the package initialization without referencing anything from it use the following import expression.
import _ "usefull"