13 lines
275 B
Go
13 lines
275 B
Go
package main
|
|
|
|
// structs.go contains structs for types that don't warrant their own 'model'
|
|
// file.
|
|
|
|
// A command line option, used to parse command lines
|
|
// and also to display the usage
|
|
type cliFlag struct {
|
|
Flag string
|
|
Name string
|
|
Description []string
|
|
}
|