16 lines
No EOL
251 B
Go
16 lines
No EOL
251 B
Go
//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
|
|
} |