This commit is contained in:
aozhiwei 2024-08-17 16:43:18 +08:00
parent c18524eee8
commit 0aad8811e2
3 changed files with 0 additions and 20 deletions

View File

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

View File

@ -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
}

View File

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