#[derive(Debug)] pub struct Authorizer {} impl Authorizer { pub fn new() -> Self { Self {} } } impl Default for Authorizer { fn default() -> Self { Self {} } } impl crate::authorization::authorizer::Authorizer for Authorizer { fn authorize(&self, _request: envoy_types::pb::envoy::service::auth::v3::CheckRequest) -> bool { false } }