()
| 104 | } |
| 105 | |
| 106 | func commandTable() string { |
| 107 | s := `| Command | Description | |
| 108 | |------|------|` |
| 109 | for _, c := range commandList { |
| 110 | s += fmt.Sprintf("\n| `%s` | %s |", c.command, c.description) |
| 111 | } |
| 112 | s += "\n" |
| 113 | return s |
| 114 | } |
| 115 | |
| 116 | // SprintList returns the example help text as a string |
| 117 | func SprintList() string { |
no outgoing calls
no test coverage detected
searching dependent graphs…