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.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/authorization/authorizer.rs b/src/authorization/authorizer.rs
deleted file mode 100644
index 62733585..00000000
--- a/src/authorization/authorizer.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-use envoy_types::ext_authz::v3::pb::CheckRequest;
-
-pub trait Authorizer: std::fmt::Debug + std::marker::Sync + std::marker::Send + 'static {
- fn authorize(&self, request: CheckRequest) -> bool;
-}