(r Request)
| 25 | } |
| 26 | |
| 27 | func (p *TestPlugin) AuthZReq(r Request) Response { |
| 28 | return Response{ |
| 29 | Allow: false, |
| 30 | Msg: "You are not authorized", |
| 31 | Err: "", |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func (p *TestPlugin) AuthZRes(r Request) Response { |
| 36 | return Response{ |
nothing calls this directly
no outgoing calls
no test coverage detected