This commit is contained in:
aozhiwei 2024-11-15 16:47:03 +08:00
parent 3eaaf25c1b
commit 76a62734db
3 changed files with 17 additions and 0 deletions

View File

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

View File

@ -0,0 +1,14 @@
package service
import (
)
type log struct {
}
func (this *log) init() {
}
func (this *log) unInit() {
}

View File

@ -5,8 +5,10 @@ type serviceMgr struct {
func (this *serviceMgr) Init() {
Chip.init()
Log.init()
}
func (this *serviceMgr) UnInit() {
Chip.unInit()
Log.unInit()
}