summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/swagger/cron.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/v1/swagger/cron.go')
-rw-r--r--routers/api/v1/swagger/cron.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/routers/api/v1/swagger/cron.go b/routers/api/v1/swagger/cron.go
new file mode 100644
index 0000000..00cfbe0
--- /dev/null
+++ b/routers/api/v1/swagger/cron.go
@@ -0,0 +1,15 @@
+// Copyright 2020 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package swagger
+
+import (
+ api "code.gitea.io/gitea/modules/structs"
+)
+
+// CronList
+// swagger:response CronList
+type swaggerResponseCronList struct {
+ // in:body
+ Body []api.Cron `json:"body"`
+}