2019-06-06 12:57:57 -05:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
// put stuff in here that you only want compiled under windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
|
2021-08-09 00:35:28 -05:00
|
|
|
// import "git.wit.org/wit/shell"
|
2019-06-06 12:57:57 -05:00
|
|
|
// import "github.com/davecgh/go-spew/spew"
|
|
|
|
|
|
|
|
func handleSignal(err interface{}, ret int) {
|
|
|
|
log.Println("handleSignal() windows doesn't do signals")
|
|
|
|
}
|