dils2k

Results 4 issues of dils2k

How would I go about implementing optional batch rpc requests as specified here: http://www.jsonrpc.org/specification#batch ?

question

When I tried to copy and run the command from README, I got an error. This commit fixes the command and makes it runnable straight from the copy button.

Your docs look amazing! I wanted to know if I can use this repo as a template for my own API documentation websites, but unfortunately I didn't find the LICENCE...

Consider this example: ```go mux := chi.NewMux() mux.With(middleware).Group(func(r chi.Router) { r.Route("/foo", func(r chi.Router) { r.With(middleware).Post("/bar", func(w http.ResponseWriter, r *http.Request) {}) }) }) ``` `/foo/bar` route is expected to have two...