blob: 6b776f087a890c36723d23839b9299a71a8cda4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//+build appengine
package graceful
import "os"
func signalNotify(interrupt chan<- os.Signal) {
// Does not notify in the case of AppEngine.
}
func sendSignalInt(interrupt chan<- os.Signal) {
// Does not send in the case of AppEngine.
}
|