包装初始化

包可以有 init 方法,在 main 之前运行一次

package usefull

func init() {
    // init code
}

如果你只想在不引用任何内容的情况下运行包初始化,请使用以下导入表达式。

import _ "usefull"