diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 13:10:52 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 13:10:52 -0600 |
| commit | ff30574117a996df332e23d1fb6f65259b316b5b (patch) | |
| tree | 8105765403000ae2a792ba4af5946f3928c6ec04 /src/authorization/mod.rs | |
| parent | 7f253078df95ea0ec725ccbd000f11723697b64d (diff) | |
refactor: move functions to repository type
Diffstat (limited to 'src/authorization/mod.rs')
| -rw-r--r-- | src/authorization/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authorization/mod.rs b/src/authorization/mod.rs index 7e1d69b5..d687d53f 100644 --- a/src/authorization/mod.rs +++ b/src/authorization/mod.rs @@ -7,5 +7,5 @@ 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 entities::{CedarEntity, EntitiesRepository}; pub use server::Server; |
