rmmagent/agent/tasks/structs_linux.go
2022-06-20 17:05:11 -07:00

11 lines
259 B
Go

package tasks
type SchedTask struct {
Name string `json:"name"`
Minute int `json:"minute"`
Hour int `json:"hour"`
Day int `json:"day"`
Month int `json:"month"`
Weekday int `json:"weekday"`
Command string `json:"command"`
}