WeatherService/src/server/go.mod

23 lines
663 B
Modula-2

module joethei.xyz/weather/server
go 1.14
replace (
joethei.xyz/weather/client => ../client
joethei.xyz/weather/config => ../config
)
require (
joethei.xyz/weather/client v1.0.0
joethei.xyz/weather/config v1.0.0
github.com/auth0/go-jwt-middleware v0.0.0-20200507191422-d30d7b9ece63
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/getsentry/sentry-go v0.6.1
github.com/gorilla/mux v1.7.4
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/justinas/alice v1.2.0
github.com/justinas/nosurf v1.1.0
github.com/throttled/throttled v2.2.4+incompatible
github.com/victorspringer/http-cache v0.0.0-20190721184638-fe78e97af707
)