zrcadlo
https://github.com/Hilbis/Hilbish
synchronizováno 2025-07-08 03:52:02 +00:00
16 řádky
224 B
Go
16 řádky
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")
|
|
}
|