1 2 3 4 5 6 7
package middleware import "github.com/gofiber/fiber/v2" func Initialize(app *fiber.App) { app.Use(authentication) }