Created
November 3, 2018 11:05
-
-
Save denisz/df48bfb778e3c02ccc733bb82c52d25d to your computer and use it in GitHub Desktop.
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
syntax = "proto3"; | |
package gRPCUE4_API; | |
service API { | |
rpc Send(Message) returns (Result) {}; | |
rpc Stream(Request) returns (Result) {}; | |
} | |
message Message { | |
string text = 1; | |
} | |
message Result { | |
bool success = 1; | |
string error = 2; | |
} | |
message Request { | |
string token = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment