mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-14 02:37:29 +08:00
14 lines
191 B
Go
14 lines
191 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import "os"
|
|
|
|
func gatewayNotifySignals() []os.Signal {
|
|
return []os.Signal{os.Interrupt}
|
|
}
|
|
|
|
func isGatewayReloadSignal(sig os.Signal) bool {
|
|
return false
|
|
}
|