set up project

This commit is contained in:
Leyla Becker 2025-03-29 19:06:07 -05:00
commit eea30c7318
7 changed files with 193 additions and 0 deletions

17
go.mod Normal file
View file

@ -0,0 +1,17 @@
module vegan-barcode/backend
go 1.24.1
require github.com/jackc/pgx v3.6.2+incompatible
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
)
require (
github.com/jackc/pgx/v5 v5.7.4
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/text v0.23.0 // indirect
)