mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 20:53:24 +00:00
21 lines
349 B
Go
21 lines
349 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"syscall"
|
|
)
|
|
|
|
var bgProcAttr *syscall.SysProcAttr = &syscall.SysProcAttr{
|
|
CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP,
|
|
}
|
|
|
|
func (j *job) foreground() error {
|
|
return errors.New("not supported on windows")
|
|
}
|
|
|
|
func (j *job) background() error {
|
|
return errors.New("not supported on windows")
|
|
}
|