-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
23 lines (21 loc) · 869 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/polygon-io/errands-server
go 1.15
require (
github.com/gin-contrib/cors v0.0.0-20170318125340-cf4846e6a636
github.com/gin-gonic/gin v1.6.3
github.com/google/go-cmp v0.5.0 // indirect
github.com/google/uuid v1.1.2
github.com/kelseyhightower/envconfig v1.4.0
github.com/kr/text v0.2.0 // indirect
github.com/mailru/easyjson v0.7.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/prometheus/client_golang v1.9.0
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/testify v1.6.1
github.com/ugorji/go v1.2.5 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2
gopkg.in/yaml.v3 v3.0.0-20200601152816-913338de1bd2 // indirect
)