Skip to content

Commit 954868a

Browse files
committed
fix: Wrong code
1 parent ad4ceef commit 954868a

File tree

3 files changed

+35
-213
lines changed

3 files changed

+35
-213
lines changed

go.mod

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module github.com/limanmys/render-engine
33
go 1.19
44

55
require (
6-
github.com/gofiber/fiber/v2 v2.40.1
6+
github.com/gofiber/fiber/v2 v2.41.0
77
github.com/gofiber/helmet/v2 v2.2.22
88
github.com/google/uuid v1.3.0
99
github.com/joho/godotenv v1.4.0
1010
go.uber.org/zap v1.24.0
11-
gorm.io/driver/mysql v1.4.4
12-
gorm.io/driver/postgres v1.4.5
13-
gorm.io/gorm v1.24.2
11+
gorm.io/driver/mysql v1.4.5
12+
gorm.io/driver/postgres v1.4.6
13+
gorm.io/gorm v1.24.3
1414
)
1515

1616
require (
@@ -20,17 +20,17 @@ require (
2020
github.com/geoffgarside/ber v1.1.0 // indirect
2121
github.com/gofrs/uuid v4.3.1+incompatible // indirect
2222
github.com/hashicorp/go-uuid v1.0.3 // indirect
23+
github.com/jackc/pgx/v5 v5.2.0 // indirect
2324
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
2425
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
2526
github.com/jcmturner/gofork v1.7.6 // indirect
2627
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
2728
github.com/jcmturner/gokrb5/v8 v8.4.3 // indirect
2829
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
2930
github.com/kr/fs v0.1.0 // indirect
30-
github.com/kr/pretty v0.3.0 // indirect
3131
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
3232
github.com/mattn/go-colorable v0.1.13 // indirect
33-
github.com/mattn/go-isatty v0.0.16 // indirect
33+
github.com/mattn/go-isatty v0.0.17 // indirect
3434
github.com/mattn/go-runewidth v0.0.14 // indirect
3535
github.com/pkg/errors v0.9.1 // indirect
3636
github.com/rivo/uniseg v0.4.3 // indirect
@@ -39,8 +39,6 @@ require (
3939
go.uber.org/goleak v1.1.12 // indirect
4040
go.uber.org/multierr v1.9.0 // indirect
4141
golang.org/x/net v0.4.0 // indirect
42-
golang.org/x/term v0.3.0 // indirect
43-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
4442
)
4543

4644
require (
@@ -49,17 +47,11 @@ require (
4947
github.com/andybalholm/brotli v1.0.4 // indirect
5048
github.com/go-sql-driver/mysql v1.7.0 // indirect
5149
github.com/hirochachacha/go-smb2 v1.1.0
52-
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
53-
github.com/jackc/pgconn v1.13.0 // indirect
54-
github.com/jackc/pgio v1.0.0 // indirect
5550
github.com/jackc/pgpassfile v1.0.0 // indirect
56-
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
57-
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
58-
github.com/jackc/pgtype v1.13.0 // indirect
59-
github.com/jackc/pgx/v4 v4.17.2 // indirect
51+
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
6052
github.com/jinzhu/inflection v1.0.0 // indirect
6153
github.com/jinzhu/now v1.1.5 // indirect
62-
github.com/klauspost/compress v1.15.13 // indirect
54+
github.com/klauspost/compress v1.15.14 // indirect
6355
github.com/masterzen/winrm v0.0.0-20220917170901-b07f6cb0598d
6456
github.com/mervick/aes-everywhere/go/aes256 v0.0.0-20220903070135-f13ed3789ae1
6557
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5

0 commit comments

Comments
 (0)