You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
250 B

2 years ago
package controllers
import (
"github.com/astaxie/beego"
)
type MainController struct {
beego.Controller
}
func (c *MainController) Get() {
c.Data["Website"] = "官网.地址"
c.Data["Email"] = "张献维@邮箱.com"
c.TplName = "index.tpl"
}