JMS #4: Getting some cli tests going. Testing out flags

This commit is contained in:
Jeremy Saenz
2013-07-18 17:29:06 -07:00
parent 04496e4364
commit 3f76896c4f
7 changed files with 64 additions and 38 deletions
+10
View File
@@ -0,0 +1,10 @@
package cli
type Command struct {
Name string
ShortName string
Usage string
Description string
Action Handler
Flags []Flag
}