15 lines
296 B
Go
15 lines
296 B
Go
// +build windows
|
|
|
|
// put stuff in here that you only want compiled under windows
|
|
|
|
package main
|
|
|
|
import "log"
|
|
|
|
// import "git.wit.com/wit/shell"
|
|
// import "github.com/davecgh/go-spew/spew"
|
|
|
|
func handleSignal(err interface{}, ret int) {
|
|
log.Println("handleSignal() windows doesn't do signals")
|
|
}
|