summaryrefslogtreecommitdiff
path: root/src/authorization/mod.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-19 17:45:39 -0600
committermo khan <mo@mokhan.ca>2025-06-19 17:45:39 -0600
commit2e26e151c273cbcc063eba2d08d28dc2ba5a33ec (patch)
tree18b436cf19da943e91e92d57585fb38d7634520c /src/authorization/mod.rs
parent1041f07d7ef3faedf759c31cd8b2c9df264799ff (diff)
refactor: split types into separate files
Diffstat (limited to 'src/authorization/mod.rs')
-rw-r--r--src/authorization/mod.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/authorization/mod.rs b/src/authorization/mod.rs
new file mode 100644
index 00000000..7d3856a5
--- /dev/null
+++ b/src/authorization/mod.rs
@@ -0,0 +1,7 @@
+pub mod authorizer;
+pub mod cedar_authorizer;
+pub mod check_service;
+
+pub use authorizer::Authorizer;
+pub use cedar_authorizer::CedarAuthorizer;
+pub use check_service::CheckService;