mirror of
https://github.com/Hilbis/Hilbish
synced 2025-07-09 04:22:03 +00:00
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")
|
|
}
|