added hacky CORS headers
Showing
- cmd/tank/config.go 16 additions, 0 deletionscmd/tank/config.go
- cmd/tank/main.go 2 additions, 2 deletionscmd/tank/main.go
- cmd/tank/web.go 16 additions, 1 deletioncmd/tank/web.go
- contrib/sample-cfg.yaml 13 additions, 0 deletionscontrib/sample-cfg.yaml
- go.mod 1 addition, 0 deletionsgo.mod
- go.sum 2 additions, 0 deletionsgo.sum
... | ... | @@ -13,6 +13,7 @@ require ( |
github.com/jinzhu/gorm v1.9.1 | ||
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a | ||
github.com/lib/pq v0.0.0-20180523175426-90697d60dd84 | ||
github.com/rs/cors v1.6.0 | ||
github.com/shurcooL/httpfs v0.0.0-20181222201310-74dc9339e414 // indirect | ||
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd // indirect | ||
golang.org/x/crypto v0.0.0-20180808211826-de0752318171 | ||
... | ... |
... | ... | @@ -17,6 +17,8 @@ github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a h1:eeaG9XMUvRBYX |
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= | ||
github.com/lib/pq v0.0.0-20180523175426-90697d60dd84 h1:it29sI2IM490luSc3RAhp5WuCYnc6RtbfLVAB7nmC5M= | ||
github.com/lib/pq v0.0.0-20180523175426-90697d60dd84/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= | ||
github.com/rs/cors v1.6.0 h1:G9tHG9lebljV9mfp9SNPDL36nCDxmo3zTlAf1YgvzmI= | ||
github.com/rs/cors v1.6.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= | ||
github.com/shurcooL/httpfs v0.0.0-20181222201310-74dc9339e414 h1:IYVb70m/qpJGjyZV2S4qbdSDnsMl+w9nsQ2iQedf1HI= | ||
github.com/shurcooL/httpfs v0.0.0-20181222201310-74dc9339e414/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= | ||
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd h1:ug7PpSOB5RBPK1Kg6qskGBoP3Vnj/aNYFTznWvlkGo0= | ||
... | ... |
Please register or sign in to comment