-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10a441b
commit a336e46
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package cmd | ||
|
||
import ( | ||
"flag" | ||
"fmt" | ||
"os" | ||
) | ||
|
||
type Cmd struct { | ||
// command name | ||
Name string | ||
|
||
// short usage message to be used in the app | ||
Short string | ||
|
||
// long usage message | ||
Long string | ||
|
||
// flag set | ||
Flags *flag.FlagSet | ||
} | ||
|
||
func (c *Cmd) Init() { | ||
if c.Name == "" { | ||
panic("cmd: missing Name") | ||
} | ||
c.Flags = flag.NewFlagSet(c.Name, flag.ContinueOnError) | ||
c.Flags.Usage = func() { | ||
fmt.Fprint(os.Stderr, c.Long) | ||
c.Flags.PrintDefaults() | ||
} | ||
} |