blob: 380eba0b11dc26548b6a4e5521a858faef45adba (
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.org/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")
}
|