add template option
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-10-31 21:08:44 +01:00
parent b9d4260597
commit 03fb65a9b4
5 changed files with 98 additions and 2 deletions

View File

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