-
Notifications
You must be signed in to change notification settings - Fork 0
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
4b0ae7a
commit 08d88ed
Showing
7 changed files
with
157 additions
and
43 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ vanir.db | |
.env | ||
coverage.out | ||
coverage.txt | ||
coverage.html | ||
coverage.html | ||
bin |
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,67 +1,82 @@ | ||
module vanir | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require github.com/labstack/echo/v4 v4.10.2 | ||
toolchain go1.22.1 | ||
|
||
require ( | ||
github.com/go-playground/locales v0.14.1 | ||
github.com/go-playground/universal-translator v0.18.1 | ||
github.com/go-playground/validator v9.31.0+incompatible | ||
github.com/golang-jwt/jwt/v5 v5.2.1 | ||
github.com/imroc/req/v3 v3.43.1 | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/labstack/echo/v4 v4.11.4 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/crypto v0.21.0 | ||
gorm.io/driver/postgres v1.5.7 | ||
gorm.io/driver/sqlite v1.5.5 | ||
gorm.io/gorm v1.25.8 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/chzyer/readline v1.5.1 // indirect | ||
github.com/cloudflare/circl v1.3.7 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator v9.31.0+incompatible // indirect | ||
github.com/go-playground/validator/v10 v10.11.2 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-playground/validator/v10 v10.19.0 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang-jwt/jwt/v5 v5.0.0-rc.1 // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20230309165930-d61513b1440d // indirect | ||
github.com/google/pprof v0.0.0-20240320155624-b11c3daa6f07 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imroc/req/v3 v3.33.1 // indirect | ||
github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465 // 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/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgx/v5 v5.5.5 // indirect | ||
github.com/jackc/puddle/v2 v2.2.1 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/joho/godotenv v1.5.1 // indirect | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/labstack/gommon v0.4.2 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.16 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.22 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/onsi/ginkgo/v2 v2.9.1 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/onsi/ginkgo/v2 v2.17.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/quic-go/qpack v0.4.0 // indirect | ||
github.com/quic-go/qtls-go1-18 v0.2.0 // indirect | ||
github.com/quic-go/qtls-go1-19 v0.2.1 // indirect | ||
github.com/quic-go/qtls-go1-20 v0.1.1 // indirect | ||
github.com/quic-go/quic-go v0.33.0 // indirect | ||
github.com/spf13/afero v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/quic-go/qtls-go1-19 v0.3.3 // indirect | ||
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect | ||
github.com/quic-go/quic-go v0.42.0 // indirect | ||
github.com/refraction-networking/utls v1.6.3 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/testify v1.8.2 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect | ||
golang.org/x/mod v0.9.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 | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.7.0 // indirect | ||
go.uber.org/mock v0.4.0 // indirect | ||
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 // indirect | ||
golang.org/x/mod v0.16.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/tools v0.19.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gorm.io/driver/postgres v1.5.0 // indirect | ||
gorm.io/driver/sqlite v1.4.4 // indirect | ||
gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11 // indirect | ||
) |
Oops, something went wrong.