generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for complex query params (#704)
Fixes #703 Given a ingress route defined as `/productcatalog/{id}` Parse this request `localhost:8892/ingress/productcatalog/123456?test=a&test=b&a.b=test` Result will be a request map that combines the path parameter `{id}` and the query params fields: ``` map[a:map[b:test] id:123456 test:[a b]] ```
- Loading branch information
1 parent
42a3175
commit e2ce1f7
Showing
2 changed files
with
116 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters