diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-02 12:32:27 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-02 12:32:27 -0600 |
| commit | a577c62277e3d651b66fd68dbe800bf3ab5c4921 (patch) | |
| tree | 7ae4e79fc84c539c12fb0313d0d3cc929b2e12ae /src/authorization/mod.rs | |
| parent | c2b8edab01b23fde6cc196a3349ad6aa19a93299 (diff) | |
| parent | 0b610d061e45811130d8cf3919037fdc9513e340 (diff) | |
Merge branch 'rs' into 'main'
Re-write the authorization daemon in rust
See merge request gitlab-org/software-supply-chain-security/authorization/authzd!1
Diffstat (limited to 'src/authorization/mod.rs')
| -rw-r--r-- | src/authorization/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/authorization/mod.rs b/src/authorization/mod.rs new file mode 100644 index 00000000..d664815b --- /dev/null +++ b/src/authorization/mod.rs @@ -0,0 +1,9 @@ +pub mod authorizer; +pub mod cedar_authorizer; +pub mod check_service; +pub mod server; + +pub use authorizer::Authorizer; +pub use cedar_authorizer::CedarAuthorizer; +pub use check_service::CheckService; +pub use server::Server; |
