| 7 | } |
| 8 | |
| 9 | type Request struct { |
| 10 | // We need at least one tagged field to indicate that v2+ uses "flexible" |
| 11 | // messages. |
| 12 | _ struct{} `kafka:"min=v2,max=v3,tag"` |
| 13 | |
| 14 | Creations []RequestACLs `kafka:"min=v0,max=v3"` |
| 15 | } |
| 16 | |
| 17 | func (r *Request) ApiKey() protocol.ApiKey { return protocol.CreateAcls } |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected