2019-06-14 06:20:29 -05:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
// put stuff in here that you only want compiled under windows
|
|
|
|
|
|
|
|
package shell
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
|
2021-08-09 00:38:06 -05:00
|
|
|
// import "git.wit.org/wit/shell"
|
2019-06-14 06:20:29 -05:00
|
|
|
// 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")
|
|
|
|
}
|