gnext icon indicating copy to clipboard operation
gnext copied to clipboard

Web Framework extension for Gin. Offers the API structuring, automates validation and generates documentation. It's fully compatible with the current Gin usages and Gin's middlewares.

Results 5 gnext issues
Sort by recently updated
recently updated
newest added

GNext is impressive but uses `interface{}` as the handler type. The good part is that we're flexible on how to write handlers. The bad part is how hard it is...

It would be useful to add middleware per endpoint

In documentation present good sample of authorization middleware. But this sample don't work in Swagger UI because `Authorization` header not used. Internet research says It must be defined as a...

If default option is an empty list, docs automatically use relative paths, which should be the default behavior That way I don't need to activate cors and api url is...

Currently path parameter can not be without a following `/` character. ```go r.POST("/users/:id", handler) //