oc-lib/models/workflow/workflow_schedule.go

15 lines
267 B
Go
Raw Normal View History

2024-07-19 10:54:58 +02:00
package oclib
import "time"
type WorkflowSchedule struct {
Id string `json:"id"`
Start time.Time
End time.Time
Cron string
}
func (ws *WorkflowSchedule) GetAllDates() (timetable []time.Time){
// Return all the execution time generated by the Cron
return
}