i have setup a web server from existing swagger.yml
using go-swagger
which already gives me validations and routing for the apis
I want to use echo web framework to develop this server futher, Is there a way to integrate these two so that i can use functionalities provided by both of them.
Basically if i implement everything in echo from scratch i give up on validations and routing provided by go-swagger out of the box and will have to write not so dev friendly annotations on echo code(compared to swagger.yml)
or any similar tool for echo ?