gocron/routers/host/host.go

12 lines
194 B
Go
Raw Normal View History

2017-04-07 01:13:36 +00:00
package host
import "gopkg.in/macaron.v1"
func Create(ctx *macaron.Context) {
ctx.Data["Title"] = "主机管理"
ctx.HTML(200, "host/create")
}
func Store(ctx *macaron.Context) {
}