Datenbank seeder hinzugefügt

This commit is contained in:
2023-11-15 20:42:39 +01:00
parent 54fdfe30a9
commit eac3fd9a9b
9 changed files with 160 additions and 5 deletions

4
go.mod
View File

@@ -3,18 +3,21 @@ module moretcgshop
go 1.20
require (
github.com/bxcodec/faker/v3 v3.8.1
github.com/google/uuid v1.4.0
github.com/gorilla/mux v1.8.1
github.com/gorilla/sessions v1.2.2
github.com/joho/godotenv v1.5.1
github.com/shopspring/decimal v1.3.1
github.com/unrolled/render v1.6.1
github.com/urfave/cli v1.22.14
golang.org/x/crypto v0.14.0
gorm.io/driver/postgres v1.5.4
gorm.io/gorm v1.25.5
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
@@ -22,6 +25,7 @@ require (
github.com/jackc/pgx/v5 v5.4.3 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
)