1
0
mirror of https://github.com/beego/bee.git synced 2025-02-16 19:37:02 +00:00
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)
}