aozhiwei 3f2931ee48 1
2024-11-13 10:25:13 +08:00

14 lines
197 B
Go

package service
import (
"main/constant"
"main/global"
)
var _serviceMgr = new(serviceMgr)
var Chip = new(chip)
func init() {
global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr)
}