mirror of https://github.com/Hilbis/Hilbish
20 lines
306 B
Go
20 lines
306 B
Go
// +build windows
|
|
|
|
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")
|
|
}
|
|
|
|
func (j *job) suspend() error {
|
|
return errors.New("not supported on windows")
|
|
}
|