2025-06-20 17:13:51 +08:00
|
|
|
package dict
|
|
|
|
|
|
|
|
|
|
import (
|
2025-06-20 22:03:38 +00:00
|
|
|
"blazing/cool"
|
|
|
|
|
|
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"
|
2025-06-20 17:13:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
var (
|
|
|
|
|
ctx = gctx.GetInitCtx()
|
|
|
|
|
)
|
2025-12-25 12:14:04 +08:00
|
|
|
cool.Logger.Debug(ctx, "module dict init start ...")
|
2026-03-01 00:02:41 +08:00
|
|
|
// cool.FillInitData(ctx, "dict", &model.DictInfo{}, nil)
|
|
|
|
|
// cool.FillInitData(ctx, "dict", &model.DictType{}, nil)
|
2025-12-25 12:14:04 +08:00
|
|
|
cool.Logger.Debug(ctx, "module dict init finished ...")
|
2025-06-20 17:13:51 +08:00
|
|
|
}
|