(cmd *serpent.Command)
| 76 | } |
| 77 | |
| 78 | func fullName(cmd *serpent.Command) string { |
| 79 | if cmd.FullName() == "coder" { |
| 80 | return "coder" |
| 81 | } |
| 82 | return strings.TrimPrefix(cmd.FullName(), "coder ") |
| 83 | } |
| 84 | |
| 85 | func fmtDocFilename(cmd *serpent.Command) string { |
| 86 | if cmd.FullName() == "coder" { |
no test coverage detected