16 lines
228 B
Go
16 lines
228 B
Go
package service
|
|
|
|
type serviceMgr struct {
|
|
}
|
|
|
|
func (this *serviceMgr) Init() {
|
|
SApiForward = new(sApiForward)
|
|
SApiForward.init()
|
|
|
|
go SApiForward.outputMonitorLog()
|
|
}
|
|
|
|
func (this *serviceMgr) UnInit() {
|
|
SApiForward.unInit()
|
|
}
|