added logging capability

This commit is contained in:
ycc
2023-09-28 17:28:38 +02:00
parent be081e6e75
commit 9f1f7476ab
3 changed files with 105 additions and 52 deletions

10
go.mod
View File

@@ -3,13 +3,13 @@ module forge.redroom.link/yves/sqldb
go 1.17
require (
github.com/go-sql-driver/mysql v1.7.1
github.com/lib/pq v1.10.4
gorm.io/driver/mysql v1.5.1
github.com/rs/zerolog v1.31.0
)
require (
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
gorm.io/gorm v1.25.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
golang.org/x/sys v0.12.0 // indirect
)