miroir de
https://github.com/Hilbis/Hilbish
synchronisé 2025-07-03 17:52:02 +00:00
16 lignes
224 B
Go
16 lignes
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")
|
|
}
|