2025-06-20 17:13:51 +08:00
|
|
|
package dict
|
|
|
|
|
|
|
|
|
|
import (
|
2025-06-20 22:03:38 +00:00
|
|
|
"blazing/cool"
|
|
|
|
|
|
|
|
|
|
_ "blazing/modules/dict/packed"
|
|
|
|
|
|
2025-06-20 17:13:51 +08:00
|
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
|
|
|
|
2025-06-20 22:03:38 +00:00
|
|
|
_ "blazing/modules/dict/controller"
|
|
|
|
|
"blazing/modules/dict/model"
|
2025-06-20 17:13:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
var (
|
|
|
|
|
ctx = gctx.GetInitCtx()
|
|
|
|
|
)
|
2025-07-26 03:48:06 +00:00
|
|
|
cool.Loger.Debug(ctx, "module dict init start ...")
|
2025-07-11 18:04:15 +08:00
|
|
|
cool.FillInitData(ctx, "dict", &model.DictInfo{}, nil)
|
|
|
|
|
cool.FillInitData(ctx, "dict", &model.DictType{}, nil)
|
2025-07-26 03:48:06 +00:00
|
|
|
cool.Loger.Debug(ctx, "module dict init finished ...")
|
2025-06-20 17:13:51 +08:00
|
|
|
}
|