Files
gocron/routers/task/task.go
T
2017-04-07 09:13:36 +08:00

12 lines
194 B
Go

package task
import "gopkg.in/macaron.v1"
func Create(ctx *macaron.Context) {
ctx.Data["Title"] = "任务管理"
ctx.HTML(200, "task/create")
}
func Store(ctx *macaron.Context) {
}