Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
th0th committed Oct 6, 2024
1 parent 228974b commit 6a67e4c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cmd/restapi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/th0th/is-email-disposable/v1
module github.com/th0th/is-email-disposable

go 1.23.2

Expand Down
2 changes: 1 addition & 1 deletion pkg/restapi/handler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion pkg/service/domain/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6a67e4c

Please sign in to comment.