You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/libs/base/app_handler.go

21 lines
322 B
Go

package base
import "github.com/veypi/OneBD"
/**
* @name: app_handler
* @author: veypi <i@veypi.com>
* @date: 2021-11-18 15:27
* @descriptionapp_handler
**/
type AppHandler struct {
ApiHandler
UUID string
}
func (h *AppHandler) Init(m OneBD.Meta) error {
h.UUID = m.Params("uuid")
return h.ApiHandler.Init(m)
}