fix package

This commit is contained in:
LPF
2026-03-10 00:33:23 +08:00
parent e9a47ac02a
commit c18fdb690e
85 changed files with 381 additions and 316 deletions

12
cmd/reload_unix.go Normal file
View File

@@ -0,0 +1,12 @@
//go:build !windows
package main
import (
"os"
"syscall"
)
func requestGatewayReloadSignal() error {
return syscall.Kill(os.Getpid(), syscall.SIGHUP)
}