This commit is contained in:
aozhiwei 2024-08-16 19:06:06 +08:00
parent eceb5ec0fa
commit 36e3fb32e9
3 changed files with 15 additions and 0 deletions

View File

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

View File

@ -5,6 +5,7 @@ import (
"main/global" "main/global"
) )
var Contribution = new(contribution)
var _serviceMgr = new(serviceMgr) var _serviceMgr = new(serviceMgr)
func init() { func init() {

View File

@ -4,7 +4,9 @@ type serviceMgr struct {
} }
func (this *serviceMgr) Init() { func (this *serviceMgr) Init() {
Contribution.init()
} }
func (this *serviceMgr) UnInit() { func (this *serviceMgr) UnInit() {
Contribution.unInit()
} }