mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
13 lines
210 B
Go
13 lines
210 B
Go
package controller
|
|
|
|
import (
|
|
"glc/conf"
|
|
"glc/gweb"
|
|
)
|
|
|
|
// 前端检索页面
|
|
func AdminController(req *gweb.HttpRequest) *gweb.HttpResult {
|
|
defer req.Redirect(conf.GetContextPath() + "/search")
|
|
return nil
|
|
}
|