hotime/type.go
2021-05-25 05:08:17 +08:00

9 lines
211 B
Go

package hotime
// Ctr 控制器
type Ctr map[string]Method
type Proj map[string]Ctr
type Router map[string]Proj
type MethodRouter map[string]Method //直接字符串关联函数
type Method func(this *Context)