Files
mining-client/internal/utils/perm_linux.go
2025-12-01 15:45:05 +08:00

13 lines
153 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//go:build linux
package utils
import "os"
// IsAdmin 检测当前用户是否为 rootUID=0
func IsAdmin() bool {
return os.Geteuid() == 0
}