bust/pkg/cli/templatecmd/template.go
kjuulh 03fb65a9b4
All checks were successful
continuous-integration/drone/push Build is passing
add template option
2022-10-31 21:08:44 +01:00

14 lines
185 B
Go

package templatecmd
import "github.com/spf13/cobra"
func NewTemplateCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "template",
}
cmd.AddCommand(NewInitCmd())
return cmd
}