diff --git a/go.mod b/go.mod index 03c559df..2c5f3ed2 100644 --- a/go.mod +++ b/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 ) diff --git a/go.sum b/go.sum index e35a7d19..ea9193ba 100644 --- a/go.sum +++ b/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= diff --git a/middleware/cors.go b/middleware/cors.go index 8ffe7237..a97f9cb0 100644 --- a/middleware/cors.go +++ b/middleware/cors.go @@ -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. diff --git a/middleware/helmet.go b/middleware/helmet.go index 03be7ca3..4d39683d 100644 --- a/middleware/helmet.go +++ b/middleware/helmet.go @@ -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. diff --git a/router.go b/router.go index 5bd3b515..12b667bd 100644 --- a/router.go +++ b/router.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 diff --git a/status.go b/status.go index b5843930..2de7c29c 100644 --- a/status.go +++ b/status.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 diff --git a/utils.go b/utils.go index 57c2ee35..18c5579d 100644 --- a/utils.go +++ b/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