-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* backport reflection based bridge * backport reflection based bridge, fix compilation
- Loading branch information
1 parent
a00c62c
commit 55203fa
Showing
25 changed files
with
624 additions
and
1,189 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 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
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,16 @@ | ||
syntax = "proto3"; | ||
|
||
package com.avast.grpc.jsonbridge.test; | ||
|
||
service TestService { | ||
rpc Add (AddParams) returns (AddResponse) {} | ||
} | ||
|
||
message AddParams { | ||
int32 a = 1; | ||
int32 b = 2; | ||
} | ||
|
||
message AddResponse { | ||
int32 sum = 1; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.