Skip to content

Instantly share code, notes, and snippets.

@denisz
Created November 3, 2018 11:05
Show Gist options
  • Save denisz/df48bfb778e3c02ccc733bb82c52d25d to your computer and use it in GitHub Desktop.
Save denisz/df48bfb778e3c02ccc733bb82c52d25d to your computer and use it in GitHub Desktop.
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