| 37 | desc string |
| 38 | value string |
| 39 | } |
| 40 | |
| 41 | func (i configItem) Title() string { return i.title } |
| 42 | func (i configItem) Description() string { return i.desc } |
| 43 | func (i configItem) FilterValue() string { return i.value } |
| 44 | |
| 45 | func GetDefaultConfig() Config { |
| 46 | return Config{ |
nothing calls this directly
no outgoing calls
no test coverage detected