This commit is contained in:
aozhiwei 2024-08-16 19:14:12 +08:00
parent dfbef7649a
commit d7f1eed31e
3 changed files with 16 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import (
)
var Contribution = new(contribution)
var FirstRecharge = new(firstRecharge)
var _serviceMgr = new(serviceMgr)
func init() {

View File

@ -0,0 +1,13 @@
package service
type firstRecharge struct {
}
func (this *firstRecharge) init() {
}
func (this *firstRecharge) unInit() {
}

View File

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