mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
9 lines
151 B
Go
9 lines
151 B
Go
package profile
|
|
|
|
// Platform identifiers
|
|
const (
|
|
PlatformAny = "any"
|
|
PlatformLinux = "lin"
|
|
PlatformWindows = "win"
|
|
PlatformMac = "mac"
|
|
)
|