oc-lib/workflow_schedule.go
2024-07-16 11:05:11 +02:00

15 lines
267 B
Go

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
}