I have an OpenAPI specification and I have used openapi-generator to generate Golang gin server.
What is the conventional way to generate Swagger documentation server from the OpenAPI specification?
I have already tried swag: it generates documentation on http://localhost:8080/swagger/index.html endpoint. But this requires API to be described in code annotations. I am looking for a Swagger UI generator from the OpenAPI specification that I already have.
Thanks.