mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
18 lines
271 B
Go
18 lines
271 B
Go
//+build !appengine
|
|
|
|
package graceful
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func signalNotify(interrupt chan<- os.Signal) {
|
|
signal.Notify(interrupt, syscall.SIGINT, syscall.SIGTERM)
|
|
}
|
|
|
|
func sendSignalInt(interrupt chan<- os.Signal) {
|
|
interrupt <- syscall.SIGINT
|
|
}
|