blob: da2805b9207ce93fde06e6e8dfd62348d726a66f (
plain)
1
2
3
4
5
6
7
8
|
#[derive(Debug)]
pub struct Authorizer {}
impl crate::authorization::authorizer::Authorizer for Authorizer {
fn authorize(&self, _request: envoy_types::ext_authz::v3::pb::CheckRequest) -> bool {
false
}
}
|