I'm using go-swagger to generate the API server. I noticed that the json generated from swagger.yml is being kept in restapi/embedded_spec.go
.
What's the best way to expose that JSON spec so my ReactJS client can access it?
So far I've had to use swagger serve swagger.yml --port=50000
and point javacript client to localhost:50000/swagger.json
. I'm looking for a way to serve that JSON straight from restapi/embedded_spec.go
via my API.