diff options
author | Cara Salter <cara@devcara.com> | 2023-08-29 20:51:38 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-08-29 20:51:38 -0400 |
commit | 190bd7f073e77eb538731506a92a175880aef24e (patch) | |
tree | 25d578ec4d73556887e0b0f98fc866f1d86e9ea7 /go.mod | |
parent | eb882d0cb6f497d6f083956e6400cb09efadbf41 (diff) | |
download | hkgi-190bd7f073e77eb538731506a92a175880aef24e.tar.gz hkgi-190bd7f073e77eb538731506a92a175880aef24e.zip |
Init database connector
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -2,7 +2,15 @@ module git.devcara.com/hkgi go 1.21.0 -require github.com/gofiber/fiber v1.14.6 +require ( + github.com/gofiber/fiber v1.14.6 + github.com/gofiber/fiber/v2 v2.49.0 + github.com/golang-migrate/migrate/v4 v4.16.2 + github.com/jackc/pgx v3.6.2+incompatible + github.com/jackc/pgx-gofrs-uuid v0.0.0-20230224015001-1d428863c2e2 + github.com/jackc/pgx/v5 v5.3.1 + github.com/joho/godotenv v1.5.1 +) require ( github.com/andybalholm/brotli v1.0.5 // indirect @@ -10,18 +18,25 @@ require ( github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/go-playground/validator/v10 v10.15.1 // indirect - github.com/gofiber/fiber/v2 v2.49.0 // indirect github.com/gofiber/utils v0.0.10 // indirect + github.com/gofrs/uuid/v5 v5.0.0 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/uuid v1.3.1 // indirect github.com/gorilla/schema v1.1.0 // indirect - github.com/joho/godotenv v1.5.1 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect + github.com/jackc/puddle v1.2.1 // indirect + github.com/jackc/puddle/v2 v2.2.0 // indirect github.com/klauspost/compress v1.16.7 // indirect github.com/leodido/go-urn v1.2.4 // indirect + github.com/lib/pq v1.10.2 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect github.com/montanaflynn/stats v0.7.1 // indirect + github.com/pkg/errors v0.9.1 // indirect github.com/rivo/uniseg v0.4.4 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasthttp v1.49.0 // indirect @@ -31,6 +46,7 @@ require ( github.com/xdg-go/stringprep v1.0.4 // indirect github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect go.mongodb.org/mongo-driver v1.12.1 // indirect + go.uber.org/atomic v1.7.0 // indirect golang.org/x/crypto v0.12.0 // indirect golang.org/x/net v0.14.0 // indirect golang.org/x/sync v0.3.0 // indirect |