kjuulh
86cba91b16
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
17 lines
201 B
Protocol Buffer
17 lines
201 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hyperlog;
|
|
|
|
service Graph {
|
|
rpc SayHello (HelloRequest) returns (HelloReply);
|
|
}
|
|
|
|
message HelloRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message HelloReply {
|
|
string message = 1;
|
|
}
|
|
|