Skip to content

Commit

Permalink
Update go version 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
th0th committed Oct 6, 2024
1 parent 4e98d4a commit 228974b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23
FROM golang:1.23.2

WORKDIR /usr/src/is-email-disposable

Expand Down
7 changes: 4 additions & 3 deletions cmd/restapi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/recover"
"github.com/rs/zerolog/log"
"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"

"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"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/th0th/is-email-disposable
module github.com/th0th/is-email-disposable/v1

go 1.23
go 1.23.2

require (
github.com/go-errors/errors v1.5.1
Expand Down
3 changes: 2 additions & 1 deletion pkg/restapi/handler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ package handler
import (
"github.com/go-errors/errors"
"github.com/gofiber/fiber/v2"
"github.com/th0th/is-email-disposable/pkg/isemaildisposable"

"github.com/th0th/is-email-disposable/v1/pkg/isemaildisposable"
)

type indexQueryParams struct {
Expand Down
3 changes: 2 additions & 1 deletion pkg/service/domain/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import (
"strings"

"github.com/go-errors/errors"
"github.com/th0th/is-email-disposable/pkg/isemaildisposable"

"github.com/th0th/is-email-disposable/v1/pkg/isemaildisposable"
)

type service struct {
Expand Down

0 comments on commit 228974b

Please sign in to comment.