Func Init
the predefined function init() causes a piece of code to execute before any other part of your package.
This code will run once the package is imported and can be used when you need to initialize your application in a specific state.
func init() {...}
It is also used in importing a side effect - technique used to set the state of a program by importing a specific package.