Semaphore/db/Schedule.go

9 lines
245 B
Go
Raw Normal View History

2021-09-06 13:05:10 +02:00
package db
type Schedule struct {
ID int `db:"id" json:"id"`
ProjectID int `db:"project_id" json:"project_id"`
2021-09-06 13:05:10 +02:00
TemplateID int `db:"template_id" json:"template_id"`
CronFormat string `db:"cron_format" json:"cron_format"`
}