mirror of
https://github.com/gofiber/fiber.git
synced 2025-07-15 00:30:37 +00:00
14 lines
134 B
Go
14 lines
134 B
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/fenny/fiber"
|
|
)
|
|
|
|
// Cors :
|
|
func Cors(c *fiber.Ctx) {
|
|
fmt.Println("LoL")
|
|
c.Next()
|
|
}
|