go-redoc icon indicating copy to clipboard operation
go-redoc copied to clipboard

go-redoc is an embedded OpenAPI/Swagger documentation ui for Go using ReDoc

Results 5 go-redoc issues
Sort by recently updated
recently updated
newest added

Hi, I really like the project @mvrilo but there's some suggestions that I think could improve the project, between these are: - The `echo` example could be updated for something...

Hi @mvrilo , I really like this repo, it helps me a lot. I was in trouble on using $ref to import outside spec. And I figure out those yaml...

Updates `Makefile` and makes redoc update `.PHONY` so it is updated when `make $(REDOC_PATH)` is called and runs update for redocly.

- Add CI jobs for checking examples and middlewares - Add tests for gin middleware - Support generic fs.FS in SpecFS instead of *embed.FS type

This is my test demo. ``` go package main import ( "github.com/gin-gonic/gin" "github.com/mvrilo/go-redoc" ginredoc "github.com/mvrilo/go-redoc/gin" ) func main() { doc := redoc.Redoc{ Title: "Example API", Description: "Example API Description", SpecFile:...