2024-07-19 13:48:01 +00:00
|
|
|
//go:build windows
|
2022-05-24 23:15:02 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (j *job) foreground() error {
|
|
|
|
return errors.New("not supported on windows")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (j *job) background() error {
|
|
|
|
return errors.New("not supported on windows")
|
|
|
|
}
|