-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: update grpc client * fix: add cond expr * fix: 完善信息 * fix: update protoc-gen-lava-errors * fix: update http errors
- Loading branch information
Showing
538 changed files
with
13,412 additions
and
83,424 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package grpcc_lb | ||
package grpcc | ||
|
||
// https://github.com/go-kratos/kratos/tree/main/selector |
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,19 @@ | ||
package grpcc | ||
|
||
import ( | ||
"context" | ||
|
||
"google.golang.org/grpc" | ||
|
||
"github.com/pubgo/lava/clients/grpcc/grpcc_config" | ||
) | ||
|
||
const Name = "grpcc" | ||
|
||
type Config = grpcc_config.Cfg | ||
|
||
// Client grpc client interface | ||
type Client interface { | ||
grpc.ClientConnInterface | ||
Healthy(ctx context.Context) error | ||
} |
Oops, something went wrong.