Mostly Initial Setup And Testing Stuff

This commit is contained in:
Annika Merris 2024-01-26 17:11:42 -05:00
parent 8c147b23d8
commit d52d9968ba
12 changed files with 502 additions and 0 deletions

19
go.mod Normal file
View file

@ -0,0 +1,19 @@
module isl-api
go 1.21.6
require (
github.com/jackc/pgconn v1.14.1
github.com/jackc/pgtype v1.14.1
github.com/jackc/pgx/v4 v4.18.1
)
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/text v0.7.0 // indirect
)