bust/pkg/cli/templatecmd/template.go

17 lines
205 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",
}
2022-10-31 22:03:50 +01:00
cmd.AddCommand(
NewInitCmd(),
NewLsCmd(),
)
2022-10-31 21:08:44 +01:00
return cmd
}