hotime/type.go
2021-05-24 07:27:41 +08:00

9 lines
206 B
Go

package hotime
//控制器
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)