24 lines
254 B
Go
24 lines
254 B
Go
|
package admin
|
||
|
|
||
|
import (
|
||
|
. "../../../hotime"
|
||
|
)
|
||
|
|
||
|
var UserCtr = Ctr{
|
||
|
"info": func(this *Context) {
|
||
|
|
||
|
},
|
||
|
"add": func(this *Context) {
|
||
|
|
||
|
},
|
||
|
"update": func(this *Context) {
|
||
|
|
||
|
},
|
||
|
"remove": func(this *Context) {
|
||
|
|
||
|
},
|
||
|
"search": func(this *Context) {
|
||
|
|
||
|
},
|
||
|
}
|