(si ServerInterface, r chi.Router, baseURL string)
| 616 | } |
| 617 | |
| 618 | func HandlerFromMuxWithBaseURL(si ServerInterface, r chi.Router, baseURL string) http.Handler { |
| 619 | return HandlerWithOptions(si, ChiServerOptions{ |
| 620 | BaseURL: baseURL, |
| 621 | BaseRouter: r, |
| 622 | }) |
| 623 | } |
| 624 | |
| 625 | // HandlerWithOptions creates http.Handler with additional options |
| 626 | func HandlerWithOptions(si ServerInterface, options ChiServerOptions) http.Handler { |
nothing calls this directly
no test coverage detected
searching dependent graphs…