-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/go_modules/x/upgrade/github.com/h…
…ashicorp/go-getter-1.7.7
- Loading branch information
Showing
8 changed files
with
596 additions
and
332 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Package grpcgateway provides a custom http mux that utilizes the global gogoproto registry to match | ||
// grpc gateway requests to query handlers. POST requests with JSON bodies and GET requests with query params are supported. | ||
// Wildcard endpoints (i.e. foo/bar/{baz}), as well as catch-all endpoints (i.e. foo/bar/{baz=**} are supported. Using | ||
// header `x-cosmos-block-height` allows you to specify a height for the query. | ||
// | ||
// The URL matching logic is achieved by building regular expressions from the gateway HTTP annotations. These regular expressions | ||
// are then used to match against incoming requests to the HTTP server. | ||
// | ||
// In cases where the custom http mux is unable to handle the query (i.e. no match found), the request will fall back to the | ||
// ServeMux from github.com/grpc-ecosystem/grpc-gateway/runtime. | ||
package grpcgateway |
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
Oops, something went wrong.