blob: 7718da5a99c897606e6f519d97e664be39aaa49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// +build windows
// put stuff in here that you only want compiled under windows
package shell
import (
"go.wit.com/log"
)
// import "go.wit.com/shell"
// import "github.com/davecgh/go-spew/spew"
func handleSignal(err interface{}, ret int) {
log.Warn("handleSignal() windows doesn't do signals")
}
func UseJournalctl() {
log.Warn("journalctl doesn't exist on windows")
}
|