File size: 124 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
package main
import (
"golang.org/x/sys/unix"
)
func init() {
shutdownSignals = append(shutdownSignals, unix.SIGTERM)
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
package main
import (
"golang.org/x/sys/unix"
)
func init() {
shutdownSignals = append(shutdownSignals, unix.SIGTERM)
}
|