Restructure the gen commands

Fixes #1603
This commit is contained in:
Bjørn Erik Pedersen 2015-11-23 16:51:12 +01:00
parent 831e936846
commit 3d09de8910
5 changed files with 19 additions and 6 deletions

10
commands/gen.go Normal file
View file

@ -0,0 +1,10 @@
package commands
import (
"github.com/spf13/cobra"
)
var genCmd = &cobra.Command{
Use: "gen",
Short: "A collection of several useful generators.",
}