shell/windows.go

21 lines
380 B
Go

// +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")
}