mirror of
https://github.com/status-im/go-waku.git
synced 2025-02-21 09:38:23 +00:00
13 lines
226 B
Protocol Buffer
13 lines
226 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message WakuMetadataRequest {
|
|
optional uint32 cluster_id = 1;
|
|
repeated uint32 shards = 2;
|
|
}
|
|
|
|
message WakuMetadataResponse {
|
|
optional uint32 cluster_id = 1;
|
|
repeated uint32 shards = 2;
|
|
} |