overflow_gateway_webapp/server/server_handlers.go
crusader a039ce356a ing
2017-11-14 12:45:48 +09:00

34 lines
561 B
Go

package server
import (
cwfs "git.loafle.net/commons_go/websocket_fasthttp/server"
)
type ServerHandlers struct {
cwfs.ServerHandlers
}
// Init invoked before the server is started
// If you override ths method, must call
func (sh *ServerHandlers) Init() error {
if err := sh.ServerHandlers.Init(); nil != err {
return err
}
return nil
}
func (sh *ServerHandlers) OnStart() {
sh.ServerHandlers.OnStart()
}
func (sh *ServerHandlers) OnStop() {
sh.ServerHandlers.OnStop()
}
func (sh *ServerHandlers) Validate() {
sh.ServerHandlers.Validate()
}