Created
November 2, 2018 14:30
-
-
Save denisz/ff904453b024267345ebd4db4c5ab6c8 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