2024-07-25 13:26:30 +08:00

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()
}