This commit is contained in:
aozhiwei 2024-09-18 17:43:19 +08:00
parent 2b0669e34f
commit 20fc3002c2
3 changed files with 9 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import (
)
var BcCurrency = new(bcCurrency)
var Vip = new(vip)
var _serviceMgr = new(serviceMgr)
func init() {

View File

@ -5,6 +5,7 @@ type serviceMgr struct {
func (this *serviceMgr) Init() {
BcCurrency.init()
Vip.init()
}
func (this *serviceMgr) UnInit() {

View File

@ -0,0 +1,7 @@
package service
type vip struct {
}
func (this *vip) init() () {
}