Skip to content

Commit

Permalink
fix: remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
katallaxie committed Feb 26, 2024
1 parent dc1e684 commit 09bd91c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions authz.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ package authz

import (
"context"
"fmt"

"github.com/gofiber/fiber/v2"
)
Expand Down Expand Up @@ -121,8 +120,6 @@ type AuthzActionResolver interface {
// This function can map any thing.
func SetAuthzHandler(object AuthzObjectResolver, action AuthzActionResolver, principal AuthzPrincipalResolver) func(c *fiber.Ctx) error {
return func(c *fiber.Ctx) error {
fmt.Println(c.Path(), c.Params("team"))

object, err := object.Resolve(c)
if err != nil {
return err
Expand Down

0 comments on commit 09bd91c

Please sign in to comment.