NewRouter returns a new Mux object that implements the Router interface.
()
| 58 | |
| 59 | // NewRouter returns a new Mux object that implements the Router interface. |
| 60 | func NewRouter() *Mux { |
| 61 | return NewMux() |
| 62 | } |
| 63 | |
| 64 | // Router consisting of the core routing methods used by chi's Mux, |
| 65 | // using only the standard net/http. |
searching dependent graphs…