summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-16 08:43:10 -0600
committermo khan <mo@mokhan.ca>2025-07-16 08:43:10 -0600
commitde1f82b30f64a7da1ae16e0b28f1a04475e217d7 (patch)
tree1fb516f8c6c54a7135946417e894e440d50d1dbb /src/lib.rs
parent2f55a5c8ac137046bc54a57dba33f6887d4ab461 (diff)
refactor: move cedar code into a separate module
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3681a859..026d999c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,5 @@
pub mod authorization;
pub mod gitlab;
-pub use authorization::{
- Authorizer, CedarAuthorizer, CedarEntity, CheckService, EntitiesRepository, Server,
-};
+pub use authorization::cedar::{CedarAuthorizer, CedarEntity, EntitiesRepository};
+pub use authorization::{Authorizer, CheckService, Server};