mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-11 13:30:05 +00:00
15 lines
263 B
Protocol Buffer
15 lines
263 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package shards;
|
||
|
|
||
|
option go_package = "./shards;shards";
|
||
|
|
||
|
// Provides methods to access key-value data
|
||
|
service Dispatcher {
|
||
|
rpc StartDispatch(stream StateRead) returns (stream StateRead);
|
||
|
}
|
||
|
|
||
|
message StateRead {
|
||
|
bytes k = 1;
|
||
|
bytes v = 2;
|
||
|
}
|