mirror of
https://github.com/ouqiang/gocron.git
synced 2024-04-21 12:31:58 +00:00
12 lines
194 B
Go
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) {
|
|
|
|
} |