all: add support for Windows

This commit is contained in:
Ayke van Laethem
2019-04-04 15:05:14 +02:00
committed by Ron Evans
parent 8906192690
commit 7369a0e7f2
11 changed files with 157 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
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.
}