vardius / gorouter

Go Server/API micro framework, HTTP request router, multiplexer, mux
https://rafallorenz.com/gorouter
MIT License
154 stars 17 forks source link

Wildcard node matching #4

Closed vardius closed 7 years ago

vardius commented 7 years ago

Consider following routes:

  1. /:name/x
  2. /:name/y

And requests:

  1. /test/x
  2. /test/y
  3. /test/z

Should do:

What happens:

TODO:

vardius commented 7 years ago

Done #5