Dmytro
Results
1
comments of
Dmytro
You can do it like this: ``` routes := httprouter.New() routes.GET("/doc/:any", swaggerHandler) func swaggerHandler(res http.ResponseWriter, req *http.Request, p httprouter.Params) { httpSwagger.WrapHandler(res, req) } ``` Do not forget import doc files:...