Files
athens/internal/shutdown/signals_notunix.go
2023-01-24 18:04:56 -08:00

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