13 lines
158 B
Go
13 lines
158 B
Go
|
package command
|
||
|
|
||
|
type FlagUsage struct {
|
||
|
LongName string
|
||
|
ShortName string
|
||
|
Usage string
|
||
|
}
|
||
|
|
||
|
type Usage struct {
|
||
|
commands []string
|
||
|
flags []string
|
||
|
}
|