2017-08-04 08:20:59 +00:00
|
|
|
package hotime
|
|
|
|
|
2021-05-24 21:08:17 +00:00
|
|
|
// Ctr 控制器
|
2018-11-14 02:31:08 +00:00
|
|
|
type Ctr map[string]Method
|
2017-08-04 08:20:59 +00:00
|
|
|
type Proj map[string]Ctr
|
|
|
|
type Router map[string]Proj
|
2020-02-20 06:20:56 +00:00
|
|
|
type MethodRouter map[string]Method //直接字符串关联函数
|
2022-03-12 17:48:54 +00:00
|
|
|
type Method func(that *Context)
|