mirror of
https://github.com/beego/bee.git
synced 2024-11-01 05:00:55 +00:00
12 lines
145 B
Go
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
|
||
|
}
|