Browse Source

Remove unused doc func

pull/3/head
makeworld 5 years ago
parent
commit
fce561d77c
  1. 10
      main.go

10
main.go

@ -4,7 +4,6 @@ import (
"errors"
"fmt"
"os"
"strings"
"github.com/urfave/cli/v2"
)
@ -194,12 +193,3 @@ func main() {
os.Exit(1)
}
}
// helpList creates an indented list for the CLI help/usage info.
func helpList(level int, items ...string) string {
ret := ""
for _, item := range items {
ret += strings.Repeat(" ", level) + "- " + item + "\n"
}
return ret
}

Loading…
Cancel
Save