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