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.
40 lines
846 B
40 lines
846 B
// Auto-generated to Go types using avdl-compiler v1.4.6 (https://github.com/keybase/node-avdl-compiler) |
|
// Input file: ../client/protocol/avdl/keybase1/os.avdl |
|
|
|
package keybase1 |
|
|
|
import ( |
|
"fmt" |
|
) |
|
|
|
type RuntimeGroup int |
|
|
|
const ( |
|
RuntimeGroup_UNKNOWN RuntimeGroup = 0 |
|
RuntimeGroup_LINUXLIKE RuntimeGroup = 1 |
|
RuntimeGroup_DARWINLIKE RuntimeGroup = 2 |
|
RuntimeGroup_WINDOWSLIKE RuntimeGroup = 3 |
|
) |
|
|
|
func (o RuntimeGroup) DeepCopy() RuntimeGroup { return o } |
|
|
|
var RuntimeGroupMap = map[string]RuntimeGroup{ |
|
"UNKNOWN": 0, |
|
"LINUXLIKE": 1, |
|
"DARWINLIKE": 2, |
|
"WINDOWSLIKE": 3, |
|
} |
|
|
|
var RuntimeGroupRevMap = map[RuntimeGroup]string{ |
|
0: "UNKNOWN", |
|
1: "LINUXLIKE", |
|
2: "DARWINLIKE", |
|
3: "WINDOWSLIKE", |
|
} |
|
|
|
func (e RuntimeGroup) String() string { |
|
if v, ok := RuntimeGroupRevMap[e]; ok { |
|
return v |
|
} |
|
return fmt.Sprintf("%v", int(e)) |
|
}
|
|
|