1
This commit is contained in:
parent
45c3b811f2
commit
3f2931ee48
15
server/wheelserver/service/chip.go
Normal file
15
server/wheelserver/service/chip.go
Normal 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
|
||||
}
|
@ -6,6 +6,7 @@ import (
|
||||
)
|
||||
|
||||
var _serviceMgr = new(serviceMgr)
|
||||
var Chip = new(chip)
|
||||
|
||||
func init() {
|
||||
global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr)
|
||||
|
@ -4,9 +4,9 @@ type serviceMgr struct {
|
||||
}
|
||||
|
||||
func (this *serviceMgr) Init() {
|
||||
|
||||
Chip.init()
|
||||
}
|
||||
|
||||
func (this *serviceMgr) UnInit() {
|
||||
|
||||
Chip.unInit()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user