mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
17 lines
257 B
Go
17 lines
257 B
Go
package controllers
|
|
|
|
import (
|
|
"legend/controllers/base"
|
|
)
|
|
|
|
type IndexController struct {
|
|
base.BasicController
|
|
}
|
|
|
|
/**
|
|
** 用户登录后跳转的页面,也是后台的整个主题框架
|
|
*/
|
|
func (c *IndexController) Index() {
|
|
c.TplName = "index.html"
|
|
}
|