summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 12:52:39 -0600
committermo khan <mo@mokhan.ca>2025-07-10 12:52:39 -0600
commit7f253078df95ea0ec725ccbd000f11723697b64d (patch)
tree388e9f1298ccf394cfff32e4ad5a4f8090aa7fd4 /src/lib.rs
parentffed217e230f6c6e725383c00900c5d5b4981f6c (diff)
feat: hack together a CLI to generate an entitites.json file
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3bd8fbd1..cf570238 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,2 +1,6 @@
pub mod authorization;
-pub use authorization::{Authorizer, CedarAuthorizer, CheckService, Server};
+
+pub use authorization::{
+ Authorizer, CedarAuthorizer, CedarEntity, CheckService, Server, generate_entities_from_api,
+ write_entities_file,
+};