mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
11 lines
215 B
Go
11 lines
215 B
Go
//go:build !unix
|
|
|
|
package shutdown
|
|
|
|
import "os"
|
|
|
|
// GetSignals returns the appropriate signals to catch for a clean shutdown, dependent on the OS.
|
|
func GetSignals() []os.Signal {
|
|
return []os.Signal{os.Interrupt}
|
|
}
|