Made change

This commit is contained in:
Tristan Ancelet
2026-02-27 14:47:12 -06:00
commit ff579dba44
11 changed files with 794 additions and 0 deletions

12
matchtype.go Normal file
View File

@@ -0,0 +1,12 @@
package parser
type matchType int
const (
noMatch matchType = iota
flagMatch
unknownFlagMatch
commandMatch
helpMatch
)