Files
parser/argtype.go
Tristan Ancelet ff579dba44 Made change
2026-02-27 14:47:12 -06:00

16 lines
140 B
Go

package parser
type ArgType int
const (
NoneType ArgType = iota
StringType
IntType
BoolType
Float32Type
Float64Type
MatchType
)