-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2daf30d
commit b58b930
Showing
4 changed files
with
91 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM golang:1.20.4-bullseye | ||
FROM golang:1.22.1-bullseye | ||
|
||
RUN go install github.com/cosmtrek/air@latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,68 @@ | ||
module github.com/sugar-cat7/vspo-portal/service/common-api | ||
|
||
go 1.20 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/Adeithe/go-twitch v0.2.3 | ||
github.com/Code-Hex/synchro v0.5.2 | ||
github.com/blendle/zapdriver v1.3.1 | ||
github.com/caarlos0/env/v9 v9.0.0 | ||
github.com/caarlos0/env/v10 v10.0.0 | ||
github.com/deckarep/golang-set/v2 v2.6.0 | ||
github.com/go-faster/errors v0.7.1 | ||
github.com/go-faster/jx v1.1.0 | ||
github.com/jackc/pgx/v5 v5.5.2 | ||
github.com/ogen-go/ogen v0.81.2 | ||
github.com/jackc/pgx/v5 v5.5.5 | ||
github.com/ogen-go/ogen v0.83.0 | ||
github.com/samber/lo v1.39.0 | ||
github.com/volatiletech/null/v8 v8.1.2 | ||
go.opentelemetry.io/otel v1.22.0 | ||
go.opentelemetry.io/otel/metric v1.22.0 | ||
go.opentelemetry.io/otel/trace v1.22.0 | ||
go.opentelemetry.io/otel v1.24.0 | ||
go.opentelemetry.io/otel/metric v1.24.0 | ||
go.opentelemetry.io/otel/trace v1.24.0 | ||
go.uber.org/multierr v1.11.0 | ||
go.uber.org/zap v1.26.0 | ||
google.golang.org/api v0.163.0 | ||
go.uber.org/zap v1.27.0 | ||
google.golang.org/api v0.170.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.23.3 // indirect | ||
cloud.google.com/go/compute v1.25.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/dlclark/regexp2 v1.10.0 // indirect | ||
github.com/dlclark/regexp2 v1.11.0 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/friendsofgo/errors v0.9.2 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/go-faster/yaml v0.4.6 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gofrs/uuid v3.2.0+incompatible // indirect | ||
github.com/gofrs/uuid v4.4.0+incompatible // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.3 // indirect | ||
github.com/itchyny/timefmt-go v0.1.5 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/volatiletech/inflect v0.0.1 // indirect | ||
github.com/volatiletech/randomize v0.0.1 // indirect | ||
github.com/volatiletech/strmangle v0.0.1 // indirect | ||
github.com/volatiletech/strmangle v0.0.6 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect | ||
go.uber.org/goleak v1.3.0 // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/exp v0.0.0-20230725093048-515e97ebf090 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/oauth2 v0.16.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/oauth2 v0.18.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
google.golang.org/grpc v1.61.0 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect | ||
google.golang.org/grpc v1.62.1 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.