Routing 3.0.1
Fixed:
- Confusion between "any parameter" and "catch all" created in the previous has been resolved (#41).
// matches /version/:/info
router.get("version", any, "info") { ... }
// matches /users/*
router.get("users", all) { ... }
any
: matches and discards any 1 path component.
all
: matches and discards any 0 or more path components; should be placed at the end of the path.
Milestone:
3.0.1