bust/pkg/cli/templatecmd/template.go
kjuulh f62519e9cd
All checks were successful
continuous-integration/drone/push Build is passing
with ls
2022-10-31 22:03:50 +01:00

17 lines
205 B
Go

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