mirror of https://github.com/ouqiang/gocron
10 lines
159 B
Go
10 lines
159 B
Go
|
package routers
|
||
|
|
||
|
import "gopkg.in/macaron.v1"
|
||
|
|
||
|
// 首页
|
||
|
func Home(ctx *macaron.Context) {
|
||
|
ctx.Data["Title"] = "首页"
|
||
|
ctx.HTML(200, "home/index")
|
||
|
}
|