gocron/routers/routers.go

15 lines
255 B
Go
Raw Normal View History

2017-03-24 05:06:53 +00:00
package routers
2017-03-24 09:55:44 +00:00
import (
"gopkg.in/macaron.v1"
)
2017-03-24 05:06:53 +00:00
// 路由注册
func Register(m *macaron.Macaron) {
// 所有GET方法自动注册HEAD方法
m.SetAutoHead(true)
// 首页
2017-03-24 09:55:44 +00:00
m.Any("/", func(ctx *macaron.Context) (string) {
2017-03-24 05:06:53 +00:00
return "go home"
})
}