bust/pkg/cli/templatecmd/template.go

14 lines
185 B
Go
Raw Normal View History

2022-10-31 21:08:44 +01:00
package templatecmd
import "github.com/spf13/cobra"
func NewTemplateCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "template",
}
cmd.AddCommand(NewInitCmd())
return cmd
}