diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index afe719e..cd2f713 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -60,7 +60,7 @@ body: value: | package main - import "github.com/gofiber/utils" + import "github.com/gofiber/utils/v2" func main() { // Steps to reproduce diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml index 65009e5..b3f3f08 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yaml +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -36,7 +36,7 @@ body: value: | package main - import "github.com/gofiber/utils" + import "github.com/gofiber/utils/v2" func main() { // Steps to reproduce diff --git a/.github/ISSUE_TEMPLATE/question.yaml b/.github/ISSUE_TEMPLATE/question.yaml index f1d0a6e..89fa758 100644 --- a/.github/ISSUE_TEMPLATE/question.yaml +++ b/.github/ISSUE_TEMPLATE/question.yaml @@ -31,7 +31,7 @@ body: value: | package main - import "github.com/gofiber/utils" + import "github.com/gofiber/utils/v2" func main() { // Steps to reproduce diff --git a/go.mod b/go.mod index e5a8cbe..c2e3cec 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gofiber/utils +module github.com/gofiber/utils/v2 go 1.19