You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/utils/system/os.go

19 lines
285 B

package system
import "runtime"
// IsMac 是否为Mac
func IsMac() bool {
return runtime.GOOS == "darwin"
}
// IsWindows 是否为Windows
func IsWindows() bool {
return runtime.GOOS == "windows"
}
// IsLinux 是否为Linux
func IsLinux() bool {
return runtime.GOOS == "linux"
}