fix: add missing help descriptions on some cmds

This commit is contained in:
2026-03-24 18:27:55 +00:00
parent ecd11767cd
commit 8a573681be
5 changed files with 40 additions and 8 deletions
+3 -2
View File
@@ -9,8 +9,9 @@ import (
func newInitCommand() *cobra.Command {
return &cobra.Command{
Use: "init",
Args: cobra.NoArgs,
Use: "init",
Short: "Initialise mire in the current project",
Args: cobra.NoArgs,
RunE: func(_ *cobra.Command, _ []string) error {
if err := mire.Init(); err != nil {
return err