-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (21 loc) · 692 Bytes
/
go.mod
File metadata and controls
25 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module github.com/chris-ramon/golang-scaffolding
go 1.23.0
require (
github.com/graphql-go/graphql v0.8.1
github.com/graphql-go/handler v0.2.3
)
require (
github.com/admin-golang/admin v0.0.0-20220720064250-fa4d88cf3085
github.com/golang-jwt/jwt/v5 v5.0.0-rc.2
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/jellydator/ttlcache/v3 v3.4.0
github.com/lib/pq v1.10.8
)
require (
github.com/evanw/esbuild v0.12.17 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/sync v0.15.0 // indirect
golang.org/x/sys v0.0.0-20220317061510-51cd9980dadf // indirect
)