(cmd *cobra.Command, dir string)
| 33 | } |
| 34 | |
| 35 | func genMarkdownTree(cmd *cobra.Command, dir string) error { |
| 36 | emptyStr := func(s string) string { return "" } |
| 37 | return genMarkdownTreeCustom(cmd, dir, emptyStr) |
| 38 | } |
| 39 | |
| 40 | func genMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender func(string) string) error { |
| 41 | if cmd.Hidden { |
no test coverage detected