tinygo/util_windows.go
2019-10-17 00:14:59 +02:00

13 строки
284 Б
Go

package main
// This file contains utility functions for Windows.
import (
"os/exec"
)
// setCommandAsDaemon makes sure this command does not receive signals sent to
// the parent. It is unimplemented on Windows.
func setCommandAsDaemon(daemon *exec.Cmd) {
// Not implemented.
}