diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-27 16:45:17 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-27 16:45:17 -0600 |
| commit | cce3e0f170dfacb6b626a8777255c3183c5c5eb3 (patch) | |
| tree | 788d88c028001d435b7f03685f4cf675a2fdacc0 /src/authorization/mod.rs | |
| parent | 7bda8947c80fc507b722f321977522bd50377c17 (diff) | |
refactor: extract authorization::Server type
Diffstat (limited to 'src/authorization/mod.rs')
| -rw-r--r-- | src/authorization/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/authorization/mod.rs b/src/authorization/mod.rs index 7d3856a5..d664815b 100644 --- a/src/authorization/mod.rs +++ b/src/authorization/mod.rs @@ -1,7 +1,9 @@ pub mod authorizer; pub mod cedar_authorizer; pub mod check_service; +pub mod server; pub use authorizer::Authorizer; pub use cedar_authorizer::CedarAuthorizer; pub use check_service::CheckService; +pub use server::Server; |
