This commit is contained in:
aozhiwei 2024-11-13 10:25:13 +08:00
parent 45c3b811f2
commit 3f2931ee48
3 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,15 @@
package service
type chip struct {
}
func (this *chip) init() {
}
func (this *chip) unInit() {
}
func (this *chip) List(accountId string) (error) {
return nil
}

View File

@ -6,6 +6,7 @@ import (
)
var _serviceMgr = new(serviceMgr)
var Chip = new(chip)
func init() {
global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr)

View File

@ -4,9 +4,9 @@ type serviceMgr struct {
}
func (this *serviceMgr) Init() {
Chip.init()
}
func (this *serviceMgr) UnInit() {
Chip.unInit()
}