mirror of https://github.com/Hilbis/Hilbish
12 lines
139 B
Go
12 lines
139 B
Go
|
// +build windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func (j *job) foreground() error {
|
||
|
return errors.New("not supported on windows")
|
||
|
}
|