summaryrefslogtreecommitdiff
path: root/pkg/app/app.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-04-02 18:49:33 -0600
committermo khan <mo@mokhan.ca>2025-04-02 18:49:33 -0600
commit6b064463b1fe734f98c916f3caf5d680531c5568 (patch)
treecc49676afb883f75f522a778faa6de26b673efa7 /pkg/app/app.go
parent064d14bfb1be7a3ed758eae2200eb73c5250e5fa (diff)
fix: switch back to casbin
Diffstat (limited to 'pkg/app/app.go')
-rw-r--r--pkg/app/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/app/app.go b/pkg/app/app.go
index 22fedcb7..a8dedc10 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -7,7 +7,7 @@ import (
)
func Start(bindAddr string) error {
- mux := authz.HTTP(authz.WithCedar(), Routes())
+ mux := authz.HTTP(authz.WithCasbin(), Routes())
return srv.Run(cfg.New(
bindAddr,
cfg.WithMux(mux),