您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. // Copyright 2020 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. import "time"
  5. // Cron represents a Cron task
  6. type Cron struct {
  7. Name string `json:"name"`
  8. Schedule string `json:"schedule"`
  9. Next time.Time `json:"next"`
  10. Prev time.Time `json:"prev"`
  11. ExecTimes int64 `json:"exec_times"`
  12. }