| 35 | } |
| 36 | |
| 37 | type Response struct { |
| 38 | // We need at least one tagged field to indicate that v2+ uses "flexible" |
| 39 | // messages. |
| 40 | _ struct{} `kafka:"min=v2,max=v3,tag"` |
| 41 | |
| 42 | ThrottleTimeMs int32 `kafka:"min=v0,max=v3"` |
| 43 | Results []ResponseACLs `kafka:"min=v0,max=v3"` |
| 44 | } |
| 45 | |
| 46 | func (r *Response) ApiKey() protocol.ApiKey { return protocol.CreateAcls } |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected