| 6 | ) |
| 7 | |
| 8 | type Completion interface { |
| 9 | Register() error |
| 10 | Unregister() error |
| 11 | |
| 12 | installBinary() error |
| 13 | uninstallBinary() error |
| 14 | |
| 15 | installCompletion() error |
| 16 | uninstallCompletion() error |
| 17 | |
| 18 | registerRunCommand() error |
| 19 | unregisterRunCommand() error |
| 20 | } |
| 21 | |
| 22 | type ShellType int8 |
| 23 |
no outgoing calls
no test coverage detected