1
This commit is contained in:
parent
c18524eee8
commit
0aad8811e2
@ -6,7 +6,6 @@ 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() {
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
package service
|
|
||||||
|
|
||||||
type firstRecharge struct {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (this *firstRecharge) init() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (this *firstRecharge) unInit() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (this *firstRecharge) IsFirstRecharge(accountAddress string, goodsId int32) (bool, error) {
|
|
||||||
return false, nil
|
|
||||||
}
|
|
@ -5,10 +5,8 @@ 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