mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
//+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.
|
|
}
|