q/src/config/arch.go

9 lines
78 B
Go

package config
type Arch uint8
const (
UnknownArch Arch = iota
ARM
X86
)