清理不必要的模块

This commit is contained in:
boyce
2019-02-01 13:53:04 +08:00
parent 20bfffeb3e
commit 8942ede22a
2 changed files with 0 additions and 36 deletions

View File

@@ -1 +0,0 @@
package sysmodule

View File

@@ -1,35 +0,0 @@
package wsservice
import (
"origin/service"
)
//声明控制器函数Map类型变量
type cWSService struct {
service.BaseService
port int
}
func (ws *cWSService) OnInit() error {
return nil
}
func (ws *cWSService) OnRun() error {
return nil
}
func (ws *cWSService) OnDestory() error {
return nil
}
func NewWSService(servicetype int) *cWSService {
wss := new(cWSService)
wss.Init(wss, servicetype)
return wss
}
func (ws *cWSService) RPC_TestMethod(a string, b int) error {
return nil
}