2024-07-04 16:08:59 +02:00
|
|
|
package oclib
|
2024-07-16 10:56:36 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|