- 新增数据表:cron_task; - 后台新增后台任务模块,支持(创建、编辑、启用/禁用、列表); - 调整项目初始化,使其支持安装后台任务模块; - 调整服务升级指引,1.2.6 -> 1.2.7;
10 lines
205 B
Go
10 lines
205 B
Go
package cron_handler
|
|
|
|
import "github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
|
|
func (h *handler) ListView() core.HandlerFunc {
|
|
return func(ctx core.Context) {
|
|
ctx.HTML("cron_task_list", nil)
|
|
}
|
|
}
|