command/usage.go

13 lines
158 B
Go
Raw Permalink Normal View History

2024-10-24 07:15:25 +08:00
package command
type FlagUsage struct {
LongName string
ShortName string
Usage string
}
type Usage struct {
commands []string
flags []string
}