scalatra-sample-app
scalatra-sample-app copied to clipboard
doesn't work, swagger v1, sbt issues. suggest updating or removing.
In this file: ``` https://github.com/wordnik/scalatra-sample-app/blob/master/src/main/scala/com/wordnik/swagger/sample/PetServlet.scala#L33 ``` the `endpoint` and `path` (first param) are redundant. Is there a need for the `endpoint` type or can it be assumed from the `path`?
Swagger defines the request/response format at the api level--it's typically shown in the resource listing like this: ``` http://petstore.swagger.wordnik.com/api/resources.json ``` That means, you can get api listings by following the...