Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Aug 7, 2024
1 parent 6055c47 commit 5399132
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/zetacored/docs.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package main

import (
"os"
"bytes"
"os"
"strings"

"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
)
Expand Down Expand Up @@ -80,12 +81,11 @@ func GenMarkdownToSingleFile(cmd *cobra.Command, w *os.File) error {
return nil
}


func docsCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "docs [path]",
Short: "Generate markdown documentation for zetacored",
RunE: docsCmd,
RunE: docsCmd,
Args: cobra.MaximumNArgs(1),
}

Expand Down

0 comments on commit 5399132

Please sign in to comment.