You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dongfeng-pay/legend/controllers/indexController.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"
}