medol-be/utils/index.utils.go

12 lines
181 B
Go
Raw Normal View History

2024-03-05 19:15:53 +00:00
package utils
import "github.com/gofiber/fiber/v2"
func IsEnabled(key bool) func(c *fiber.Ctx) bool {
if key {
return nil
}
return func(c *fiber.Ctx) bool { return true }
}