mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-13 05:37:29 +08:00
9 lines
158 B
Go
9 lines
158 B
Go
//go:build windows
|
|
|
|
package api
|
|
|
|
// requestSelfReloadSignal is a no-op on Windows (no SIGHUP semantics).
|
|
func requestSelfReloadSignal() error {
|
|
return nil
|
|
}
|