From 6a67e4c2e6ff3e9ff5aebbfb885dbc0bb55ca5a1 Mon Sep 17 00:00:00 2001 From: Gokhan Sari Date: Sun, 6 Oct 2024 21:03:39 +0300 Subject: [PATCH] Update version --- cmd/restapi/main.go | 6 +++--- go.mod | 2 +- pkg/restapi/handler/main.go | 2 +- pkg/service/domain/main.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/restapi/main.go b/cmd/restapi/main.go index 884b5b8..8a14221 100644 --- a/cmd/restapi/main.go +++ b/cmd/restapi/main.go @@ -7,9 +7,9 @@ import ( "github.com/gofiber/fiber/v2/middleware/recover" "github.com/rs/zerolog/log" - "github.com/th0th/is-email-disposable/v1/pkg/isemaildisposable" - "github.com/th0th/is-email-disposable/v1/pkg/restapi/handler" - "github.com/th0th/is-email-disposable/v1/pkg/service/domain" + "github.com/th0th/is-email-disposable/pkg/isemaildisposable" + "github.com/th0th/is-email-disposable/pkg/restapi/handler" + "github.com/th0th/is-email-disposable/pkg/service/domain" ) func main() { diff --git a/go.mod b/go.mod index 012f7b1..3667081 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/th0th/is-email-disposable/v1 +module github.com/th0th/is-email-disposable go 1.23.2 diff --git a/pkg/restapi/handler/main.go b/pkg/restapi/handler/main.go index 1166601..1fb606a 100644 --- a/pkg/restapi/handler/main.go +++ b/pkg/restapi/handler/main.go @@ -4,7 +4,7 @@ import ( "github.com/go-errors/errors" "github.com/gofiber/fiber/v2" - "github.com/th0th/is-email-disposable/v1/pkg/isemaildisposable" + "github.com/th0th/is-email-disposable/pkg/isemaildisposable" ) type indexQueryParams struct { diff --git a/pkg/service/domain/main.go b/pkg/service/domain/main.go index fce95c7..124d70e 100644 --- a/pkg/service/domain/main.go +++ b/pkg/service/domain/main.go @@ -7,7 +7,7 @@ import ( "github.com/go-errors/errors" - "github.com/th0th/is-email-disposable/v1/pkg/isemaildisposable" + "github.com/th0th/is-email-disposable/pkg/isemaildisposable" ) type service struct {