any-sync/syncproto/proto/service.proto
Sergey Cherepanov cbfaf7fd91
drpc experiment
2022-07-14 16:59:01 +03:00

9 lines
218 B
Protocol Buffer

syntax = "proto3";
package anytype;
option go_package = "/syncproto";
import "syncproto/proto/commands.proto";
service AnytypeSync {
rpc Ping(stream anytype.Ping.Request) returns (stream anytype.Ping.Response);
}