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"
|
|
|
|
|
2023-12-20 14:46:13 -06:00
|
|
|
// import "go.wit.com/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")
|
|
|
|
}
|