Restructured command config

Removed go/build reference in clean
This commit is contained in:
notzippy@gmail.com
2020-04-26 11:07:06 -07:00
parent c1aee24445
commit 07d67846c1
10 changed files with 80 additions and 45 deletions

View File

@@ -0,0 +1,9 @@
package command
type (
Test struct {
ImportCommand
Mode string `short:"m" long:"run-mode" description:"The mode to run the application in"`
Function string `short:"f" long:"suite-function" description:"The suite.function"`
}
)