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

View file

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