Versions in this module Expand all Collapse all v0 v0.0.0 Oct 3, 2019 Changes in this version + type BaseController struct + type BaseHandler struct + func (handler *BaseHandler) AfterAction(action string, response string) string + func (handler *BaseHandler) BeforeAction(action string) bool + func (handler *BaseHandler) Init() + type BaseWebsocketHandler struct + func (handler *BaseWebsocketHandler) GetMessage() *models.Message + func (handler *BaseWebsocketHandler) GetSession(session *models.WebsocketSession) *models.WebsocketSession + func (handler *BaseWebsocketHandler) Init() + func (handler *BaseWebsocketHandler) SetMessage(message *models.Message) + func (handler *BaseWebsocketHandler) SetSession(session *models.WebsocketSession) + type ControllerInterface interface + SetControllerType func(controllerType base.ControllerType) + type HandlerInterface interface + AfterAction func(action string, response string) string + BeforeAction func(action string) bool + Get func(param string) interface{} + GetInt func(param string) int64 + GetString func(param string) string + Init func() + type HttpHandlerInterface interface + type WebsocketHandlerInterface interface + SetMessage func(message *models.Message) + SetSession func(session *models.WebsocketSession)