mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 11:52:41 +00:00
13 lines
152 B
Go
13 lines
152 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gofiber/fiber"
|
|
)
|
|
|
|
// Session :
|
|
func Session() func(*fiber.Ctx) {
|
|
return func(c *fiber.Ctx) {
|
|
c.Next()
|
|
}
|
|
}
|