diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-24 14:36:58 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-24 14:36:58 -0600 |
| commit | 85490a4cfa7f3836d3d2f1e7cbfe48b668aa484b (patch) | |
| tree | 3fb62e5566ef838187b8568f9e71d0495f24d812 /src/authorization/authorizer.rs | |
| parent | a0537b163037a92652ec92c1f47945e0572bb76e (diff) | |
feat: connect check service to a minimal cedar policy
Diffstat (limited to 'src/authorization/authorizer.rs')
| -rw-r--r-- | src/authorization/authorizer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authorization/authorizer.rs b/src/authorization/authorizer.rs index 0f700ba7..14a7df27 100644 --- a/src/authorization/authorizer.rs +++ b/src/authorization/authorizer.rs @@ -1,5 +1,5 @@ use envoy_types::ext_authz::v3::pb::CheckRequest; -pub trait Authorizer { +pub trait Authorizer: std::fmt::Debug { fn authorize(&self, request: CheckRequest) -> bool; } |
