summaryrefslogtreecommitdiff
path: root/src/authorization/authorizer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/authorization/authorizer.rs')
-rw-r--r--src/authorization/authorizer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authorization/authorizer.rs b/src/authorization/authorizer.rs
index 62733585..94e44e37 100644
--- a/src/authorization/authorizer.rs
+++ b/src/authorization/authorizer.rs
@@ -1,4 +1,4 @@
-use envoy_types::ext_authz::v3::pb::CheckRequest;
+use crate::rpc::envoy::service::auth::v3::CheckRequest;
pub trait Authorizer: std::fmt::Debug + std::marker::Sync + std::marker::Send + 'static {
fn authorize(&self, request: CheckRequest) -> bool;