Files
mc-gateway/cmd/gateway/pid_unix.go
2025-07-01 18:38:50 +08:00

13 lines
195 B
Go

// pid_unix.go
//go:build unix || plan9
package main
func getPidFileFromConfig() string {
pidFile := config.PidFile
if pidFile == "" {
return "/dev/shm/mc-gateway.pid"
}
return pidFile
}