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. }