mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-03-17 04:13:12 +00:00
12 lines
214 B
Protocol Buffer
12 lines
214 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
|
||
|
|
message WakuMetadataRequest {
|
||
|
|
optional uint32 cluster_id = 1;
|
||
|
|
repeated uint32 shards = 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
message WakuMetadataResponse {
|
||
|
|
optional uint32 cluster_id = 1;
|
||
|
|
repeated uint32 shards = 2;
|
||
|
|
}
|