| 7 | ) |
| 8 | |
| 9 | type NetworkProtocol struct { |
| 10 | Protocol string |
| 11 | } |
| 12 | |
| 13 | func (NetworkProtocol) Complete(prefix string) []flags.Completion { |
| 14 | return completions([]string{"tcp", "udp"}, prefix, false) |
nothing calls this directly
no outgoing calls
no test coverage detected