1
0
mirror of https://github.com/beego/bee.git synced 2024-05-29 03:53:29 +00:00
bee/vendor/github.com/peterh/liner/signal.go
2017-03-19 23:48:59 +01:00

13 lines
128 B
Go

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