()
| 26 | } |
| 27 | |
| 28 | func (c *List) Help() string { |
| 29 | helpText := ` |
| 30 | Usage: kitectl list |
| 31 | |
| 32 | Lists installed kites. |
| 33 | ` |
| 34 | return strings.TrimSpace(helpText) |
| 35 | } |
| 36 | |
| 37 | func (c *List) Run(_ []string) int { |
| 38 | kites, err := getInstalledKites("") |
nothing calls this directly
no outgoing calls
no test coverage detected