| 10 | ) |
| 11 | |
| 12 | type Locale struct { |
| 13 | Locale string |
| 14 | } |
| 15 | |
| 16 | func (l Locale) Complete(prefix string) []flags.Completion { |
| 17 | return completions(l.listLocales(), l.sanitize(prefix), false) |
nothing calls this directly
no outgoing calls
no test coverage detected