Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
eoefans-api/go.mod
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
72 lines (69 sloc)
2.81 KB
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
module vlink.dev/eoefans | |
go 1.18 | |
require ( | |
github.com/TheZeroSlave/zapsentry v1.14.0 | |
github.com/getsentry/sentry-go v0.18.0 | |
github.com/gin-contrib/pprof v1.4.0 | |
github.com/gin-contrib/zap v0.1.0 | |
github.com/gin-gonic/gin v1.9.0 | |
github.com/go-playground/validator/v10 v10.12.0 | |
github.com/go-resty/resty/v2 v2.7.0 | |
github.com/google/uuid v1.3.0 | |
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible | |
github.com/lib/pq v1.10.7 | |
github.com/patrickmn/go-cache v2.1.0+incompatible | |
github.com/pkg/errors v0.9.1 | |
github.com/spf13/viper v1.15.0 | |
go.uber.org/fx v1.19.2 | |
go.uber.org/zap v1.24.0 | |
golang.org/x/mod v0.8.0 | |
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | |
gorm.io/driver/mysql v1.4.7 | |
gorm.io/driver/postgres v1.4.8 | |
gorm.io/gorm v1.24.6 | |
) | |
require ( | |
github.com/bytedance/sonic v1.8.1 // indirect | |
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect | |
github.com/fsnotify/fsnotify v1.6.0 // indirect | |
github.com/gin-contrib/sse v0.1.0 // indirect | |
github.com/go-playground/locales v0.14.1 // indirect | |
github.com/go-playground/universal-translator v0.18.1 // indirect | |
github.com/go-sql-driver/mysql v1.7.0 // indirect | |
github.com/goccy/go-json v0.10.0 // indirect | |
github.com/hashicorp/hcl v1.0.0 // indirect | |
github.com/jackc/pgpassfile v1.0.0 // indirect | |
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect | |
github.com/jackc/pgx/v5 v5.3.0 // indirect | |
github.com/jinzhu/inflection v1.0.0 // indirect | |
github.com/jinzhu/now v1.1.5 // indirect | |
github.com/json-iterator/go v1.1.12 // indirect | |
github.com/klauspost/cpuid/v2 v2.2.4 // indirect | |
github.com/leodido/go-urn v1.2.2 // indirect | |
github.com/magiconair/properties v1.8.7 // indirect | |
github.com/mattn/go-isatty v0.0.17 // indirect | |
github.com/mitchellh/mapstructure v1.5.0 // indirect | |
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | |
github.com/modern-go/reflect2 v1.0.2 // indirect | |
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | |
github.com/spf13/afero v1.9.4 // indirect | |
github.com/spf13/cast v1.5.0 // indirect | |
github.com/spf13/jwalterweatherman v1.1.0 // indirect | |
github.com/spf13/pflag v1.0.5 // indirect | |
github.com/subosito/gotenv v1.4.2 // indirect | |
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | |
github.com/ugorji/go/codec v1.2.10 // indirect | |
go.opentelemetry.io/otel v1.13.0 // indirect | |
go.opentelemetry.io/otel/trace v1.13.0 // indirect | |
go.uber.org/atomic v1.10.0 // indirect | |
go.uber.org/dig v1.16.1 // indirect | |
go.uber.org/multierr v1.9.0 // indirect | |
golang.org/x/arch v0.2.0 // indirect | |
golang.org/x/crypto v0.7.0 // indirect | |
golang.org/x/net v0.8.0 // indirect | |
golang.org/x/sys v0.6.0 // indirect | |
golang.org/x/text v0.8.0 // indirect | |
google.golang.org/protobuf v1.28.1 // indirect | |
gopkg.in/ini.v1 v1.67.0 // indirect | |
gopkg.in/yaml.v3 v3.0.1 // indirect | |
) |