diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 12:52:39 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 12:52:39 -0600 |
| commit | 7f253078df95ea0ec725ccbd000f11723697b64d (patch) | |
| tree | 388e9f1298ccf394cfff32e4ad5a4f8090aa7fd4 /src/authorization/mod.rs | |
| parent | ffed217e230f6c6e725383c00900c5d5b4981f6c (diff) | |
feat: hack together a CLI to generate an entitites.json file
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 d664815b..7e1d69b5 100644 --- a/src/authorization/mod.rs +++ b/src/authorization/mod.rs @@ -1,9 +1,11 @@ pub mod authorizer; pub mod cedar_authorizer; pub mod check_service; +pub mod entities; pub mod server; pub use authorizer::Authorizer; pub use cedar_authorizer::CedarAuthorizer; pub use check_service::CheckService; +pub use entities::{CedarEntity, generate_entities_from_api, write_entities_file}; pub use server::Server; |
