1
This commit is contained in:
parent
eceb5ec0fa
commit
36e3fb32e9
@ -1 +1,13 @@
|
||||
package service
|
||||
|
||||
type contribution struct {
|
||||
|
||||
}
|
||||
|
||||
func (this *contribution) init() {
|
||||
|
||||
}
|
||||
|
||||
func (this *contribution) unInit() {
|
||||
|
||||
}
|
||||
|
@ -5,6 +5,7 @@ import (
|
||||
"main/global"
|
||||
)
|
||||
|
||||
var Contribution = new(contribution)
|
||||
var _serviceMgr = new(serviceMgr)
|
||||
|
||||
func init() {
|
||||
|
@ -4,7 +4,9 @@ type serviceMgr struct {
|
||||
}
|
||||
|
||||
func (this *serviceMgr) Init() {
|
||||
Contribution.init()
|
||||
}
|
||||
|
||||
func (this *serviceMgr) UnInit() {
|
||||
Contribution.unInit()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user