diff options
Diffstat (limited to 'backend/go.mod')
| -rw-r--r-- | backend/go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/backend/go.mod b/backend/go.mod new file mode 100644 index 0000000..68f40b1 --- /dev/null +++ b/backend/go.mod @@ -0,0 +1,16 @@ +module yaum + +go 1.25.0 + +require github.com/jackc/pgx/v5 v5.9.2 + +require ( + github.com/golang-jwt/jwt/v5 v5.2.1 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect + github.com/joho/godotenv v1.5.1 // indirect + golang.org/x/crypto v0.52.0 // indirect + golang.org/x/sync v0.20.0 // indirect + golang.org/x/text v0.37.0 // indirect +) |