Adding a separate command as a run value.

This commit is contained in:
spf13 2013-09-03 19:04:50 -04:00
parent 3d8285f415
commit 1be06e4e1a
1 changed files with 5 additions and 3 deletions

View File

@ -35,9 +35,11 @@ var cmdTimes = &Command{
Use: "times [string to echo]",
Short: "Echo anything to the screen more times",
Long: `an slightly useless command for testing.`,
Run: func(cmd *Command, args []string) {
Run: timesRunner,
}
func timesRunner(cmd *Command, args []string) {
tt = args
},
}
func flagInit() {