-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (25 loc) · 966 Bytes
/
go.mod
File metadata and controls
27 lines (25 loc) · 966 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
26
27
module github.com/jasonbronson/logreader
go 1.16
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/cors v1.3.1
github.com/gin-contrib/static v0.0.1
github.com/gin-gonic/gin v1.7.1
github.com/go-redis/redis/v7 v7.4.0
github.com/google/go-cmp v0.3.1 // indirect
github.com/joho/godotenv v1.3.0
github.com/newrelic/go-agent/v3 v3.12.0
github.com/newrelic/go-agent/v3/integrations/nrgin v1.1.0
github.com/newrelic/go-agent/v3/integrations/nrredis-v7 v1.0.0
github.com/newrelic/go-agent/v3/integrations/nrsqlite3 v1.1.0
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.5.1 // indirect
github.com/xo/dburl v0.7.0
go.uber.org/multierr v1.5.0 // indirect
go.uber.org/zap v1.13.0
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
golang.org/x/tools v0.0.0-20200103221440-774c71fcf114
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.9
)