Skip to content

Commit

Permalink
Merge pull request #9 from singnet/senna-188-1
Browse files Browse the repository at this point in the history
[das-atom-db/#188] Add attention broker's fetch() rpc
  • Loading branch information
andre-senna authored Aug 27, 2024
2 parents ec2d346 + 3be2bd2 commit fe77a01
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions cache_network.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
syntax = "proto3";
import "common.proto";
package das;

message MessageData {
string command = 1;
repeated string args = 2;
string sender = 3;
string receiver = 4;
}

service CacheNetwork {
rpc ping (Empty) returns (Ack) {}
rpc execute_message (MessageData) returns (Ack) {}
}

0 comments on commit fe77a01

Please sign in to comment.