Add a minimal gorm example that takes a go struct, creates a postgres table, and writes the struct to the table.

This commit is contained in:
Michael Hohn
2024-06-03 14:03:26 -07:00
committed by =Michael Hohn
parent e850a36943
commit 71838d3320
6 changed files with 113 additions and 3 deletions

11
go.mod
View File

@@ -11,5 +11,16 @@ require (
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/pgx/v5 v5.6.0 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.15.0 // indirect
gorm.io/driver/postgres v1.5.7 // indirect
gorm.io/gorm v1.25.10 // indirect
)