-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b45f560
commit 2815fcc
Showing
1 changed file
with
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ | |
``` | ||
[![Go Reference](https://pkg.go.dev/badge/larking.io.svg)](https://pkg.go.dev/larking.io/larking) | ||
|
||
Larking is a [protoreflect](https://pkg.go.dev/google.golang.org/protobuf/reflect/protoreflect) gRPC-transcoding implementation. | ||
Larking is a [protoreflect](https://pkg.go.dev/google.golang.org/protobuf/reflect/protoreflect) gRPC-transcoding implementation with support for gRPC, gRPC-web and twirp protocols. | ||
Bind [`google.api.http`](https://github.com/googleapis/googleapis/blob/master/google/api/http.proto) annotations to gRPC services without code generation. | ||
Works with existing go-protobuf generators | ||
[`protoc-gen-go`](https://pkg.go.dev/google.golang.org/[email protected]/cmd/protoc-gen-go) and | ||
[`protoc-gen-go-grpc`](https://pkg.go.dev/google.golang.org/grpc/cmd/protoc-gen-go-grpc). | ||
[`protoc-gen-go-grpc`](https://pkg.go.dev/google.golang.org/grpc/cmd/protoc-gen-go-grpc) | ||
and Go's std library net/http stack. | ||
Bind to local services or proxy to other gRPC servers using gRPC server reflection. | ||
Use Google's [API design guide](https://cloud.google.com/apis/design) to design beautiful RESTful APIs with gRPC services. | ||
Use Google's [API design guide](https://cloud.google.com/apis/design) to design beautiful RESTful APIs for your gRPC services. | ||
|
||
- Supports [gRPC](https://grpc.io) clients | ||
- Supports [gRPC-transcoding](https://cloud.google.com/endpoints/docs/grpc/transcoding) clients | ||
|