safing-portmaster/profile/fingerprint/const.go
Aaron Bieber 664e8371ac Add OpenBSD osIdentifier
This lets portmaster build on OpenBSD.
2021-04-28 19:01:30 -06:00

9 lines
163 B
Go

package profile
// Platform identifiers
const (
PlatformLinux = "linux"
PlatformWindows = "windows"
PlatformMac = "macos"
PlatformOpenBSD = "openbsd"
)