1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 14:07:02 +09:00
any-sync/service/file/filesync/protos/filesync.proto
Sergey Cherepanov 5d3e79e506
commonfile
2022-12-12 20:49:43 +03:00

19 lines
296 B
Protocol Buffer

syntax = "proto3";
package anytype;
option go_package = "service/space/spacesync";
message BlockSync {
string spaceId = 1;
repeated bytes cids = 2;
repeated bytes data = 3;
}
message Msg {
}
service File {
rpc GetCID(Msg) returns (Msg);
rpc PushCID(Msg) returns (Msg);
}