mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 14:07:02 +09:00
19 lines
296 B
Protocol Buffer
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);
|
|
}
|
|
|