1
This commit is contained in:
parent
dfbef7649a
commit
d7f1eed31e
@ -6,6 +6,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var Contribution = new(contribution)
|
var Contribution = new(contribution)
|
||||||
|
var FirstRecharge = new(firstRecharge)
|
||||||
var _serviceMgr = new(serviceMgr)
|
var _serviceMgr = new(serviceMgr)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
13
server/marketserver/service/first_recharge.go
Normal file
13
server/marketserver/service/first_recharge.go
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
package service
|
||||||
|
|
||||||
|
type firstRecharge struct {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *firstRecharge) init() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *firstRecharge) unInit() {
|
||||||
|
|
||||||
|
}
|
@ -5,8 +5,10 @@ type serviceMgr struct {
|
|||||||
|
|
||||||
func (this *serviceMgr) Init() {
|
func (this *serviceMgr) Init() {
|
||||||
Contribution.init()
|
Contribution.init()
|
||||||
|
FirstRecharge.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *serviceMgr) UnInit() {
|
func (this *serviceMgr) UnInit() {
|
||||||
Contribution.unInit()
|
Contribution.unInit()
|
||||||
|
FirstRecharge.unInit()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user