mirror of https://github.com/gofiber/fiber.git
Update to gofiber
parent
64fae732d1
commit
e6d60ebaaf
3
go.mod
3
go.mod
|
@ -1,6 +1,7 @@
|
|||
module github.com/fenny/fiber
|
||||
module github.com/gofiber/fiber
|
||||
|
||||
require (
|
||||
github.com/fenny/fiber v0.7.0 // indirect
|
||||
github.com/json-iterator/go v1.1.9
|
||||
github.com/valyala/fasthttp v1.8.0
|
||||
)
|
||||
|
|
2
go.sum
2
go.sum
|
@ -1,5 +1,7 @@
|
|||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/fenny/fiber v0.7.0 h1:1h+PadHOgFjsVMfbP3dzSVYBwwso0Py+mtNuX7yYfmU=
|
||||
github.com/fenny/fiber v0.7.0/go.mod h1:x3qfs/S5J8PzYJbpWdsa8nYhUpvF9mwGQMOSCHNa/vo=
|
||||
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
||||
github.com/json-iterator/go v1.1.9 h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns=
|
||||
github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
|
||||
|
|
|
@ -3,7 +3,7 @@ package middleware
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/fenny/fiber"
|
||||
"github.com/gofiber/fiber"
|
||||
)
|
||||
|
||||
// Cors : Enable cross-origin resource sharing (CORS) with various options.
|
||||
|
|
|
@ -3,7 +3,7 @@ package middleware
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/fenny/fiber"
|
||||
"github.com/gofiber/fiber"
|
||||
)
|
||||
|
||||
// Helmet : Helps secure your apps by setting various HTTP headers.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🖥 https://github.com/fenny/fiber
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
// 💖 @valyala, @dgrr, @erikdubbelboer, @savsgio, @julienschmidt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🖥 https://github.com/fenny/fiber
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
// 💖 @valyala, @dgrr, @erikdubbelboer, @savsgio, @julienschmidt
|
||||
|
|
2
utils.go
2
utils.go
|
@ -1,6 +1,6 @@
|
|||
// 🚀 Fiber, Express on Steriods
|
||||
// 📌 Don't use in production until version 1.0.0
|
||||
// 🖥 https://github.com/fenny/fiber
|
||||
// 🖥 https://github.com/gofiber/fiber
|
||||
|
||||
// 🦸 Not all heroes wear capes, thank you to some amazing people
|
||||
// 💖 @valyala, @dgrr, @erikdubbelboer, @savsgio, @julienschmidt
|
||||
|
|
Loading…
Reference in New Issue