intimate/main.go

16 lines
196 B
Go
Raw Normal View History

package main
// InitConfig 初始化配置加载 config.yaml(yml)
var InitConfig *Config
func init() {
InitConfig = &Config{}
InitConfig.Load()
2020-07-06 09:58:24 +00:00
storeOpenrec = NewStore()
}
func main() {
}