apollo-backend/go.mod

18 lines
524 B
Modula-2
Raw Normal View History

2021-07-06 00:17:21 +00:00
// +heroku install ./cmd/...
2021-07-05 23:22:24 +00:00
module github.com/christianselig/apollo-backend
2021-05-10 00:51:15 +00:00
2021-07-06 00:12:53 +00:00
// +heroku goVersion go1.16
2021-05-10 00:51:15 +00:00
go 1.16
require (
github.com/davecgh/go-spew v1.1.1 // indirect
2021-06-24 02:19:43 +00:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
2021-05-10 00:51:15 +00:00
github.com/joho/godotenv v1.3.0
github.com/julienschmidt/httprouter v1.3.0
github.com/lib/pq v1.10.1
2021-07-06 00:08:19 +00:00
github.com/sideshow/apns2 v0.20.0
2021-05-10 00:51:15 +00:00
github.com/stretchr/testify v1.5.1 // indirect
2021-07-06 00:14:25 +00:00
golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
2021-05-10 00:51:15 +00:00
)