10 lines
151 B
Go
10 lines
151 B
Go
package profile
|
|
|
|
// Platform identifiers
|
|
const (
|
|
PlatformAny = "any"
|
|
PlatformLinux = "lin"
|
|
PlatformWindows = "win"
|
|
PlatformMac = "mac"
|
|
)
|