with ls
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-10-31 22:03:50 +01:00
parent c990e50622
commit f62519e9cd
2 changed files with 27 additions and 1 deletions

View File

@@ -7,7 +7,10 @@ func NewTemplateCmd() *cobra.Command {
Use: "template",
}
cmd.AddCommand(NewInitCmd())
cmd.AddCommand(
NewInitCmd(),
NewLsCmd(),
)
return cmd
}