1
0
mirror of https://github.com/beego/bee.git synced 2024-06-24 12:04:14 +00:00
bee/vendor/github.com/peterh/liner/signal_legacy.go
2017-03-19 23:48:59 +01:00

12 lines
145 B
Go

// +build !go1.1,!windows
package liner
import (
"os"
)
func stopSignal(c chan<- os.Signal) {
// signal.Stop does not exist before Go 1.1
}