updated for unix build
This commit is contained in:
parent
66aca05028
commit
e20edcc9ad
37 changed files with 1001 additions and 257 deletions
16
agent/tasks/tasks_unix.go
Normal file
16
agent/tasks/tasks_unix.go
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package tasks
|
||||
|
||||
func CreateSchedTask(st SchedTask) (bool, error) {
|
||||
return true, nil
|
||||
}
|
||||
|
||||
func DeleteSchedTask(name string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func ListSchedTasks() ([]string, error) {
|
||||
return []string{}, nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue