Last active
December 18, 2017 10:56
-
-
Save radu-matei/3a4b5c6073b3b97a4eb9ef1003dbaaa9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 rpc; | |
service KTK { | |
rpc GetVersion(Empty) returns (Version){} | |
rpc ServerStream(Empty) returns(stream StreamingMessage){} | |
} | |
message Version { | |
string sem_ver = 1; | |
string git_commit = 2; | |
} | |
message StreamingMessage { | |
string message = 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment