19 lines
325 B
Go
19 lines
325 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
// put stuff in here that you only want compiled under windows
|
|
|
|
package shell
|
|
|
|
import (
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
func handleSignal(err interface{}, ret int) {
|
|
log.Warn("handleSignal() windows doesn't do signals")
|
|
}
|
|
|
|
func UseJournalctl() {
|
|
log.Warn("journalctl doesn't exist on windows")
|
|
}
|