mirror of https://github.com/Hilbis/Hilbish
16 lines
224 B
Go
16 lines
224 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")
|
||
|
}
|