CompleteableOptions abstracts options which can be completed.
| 27 | |
| 28 | // CompleteableOptions abstracts options which can be completed. |
| 29 | type CompleteableOptions interface { |
| 30 | Complete() error |
| 31 | } |
| 32 | |
| 33 | // PrintableOptions abstracts options which can be printed. |
| 34 | type PrintableOptions interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…