code.gitea.io/gitea@v1.21.7/routers/api/v1/swagger/cron.go (about) 1 // Copyright 2020 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package swagger 5 6 import ( 7 api "code.gitea.io/gitea/modules/structs" 8 ) 9 10 // CronList 11 // swagger:response CronList 12 type swaggerResponseCronList struct { 13 // in:body 14 Body []api.Cron `json:"body"` 15 }