monitor_job.go 206 B

12345678910111213
  1. package admin
  2. import "github.com/gogf/gf/net/ghttp"
  3. type MonitorJob struct{}
  4. //任务列表
  5. func (c *MonitorJob) List(r *ghttp.Request) {}
  6. //添加任务
  7. func (c *MonitorJob) Add(r *ghttp.Request) {
  8. }