groupcache-pb 0.3.0

groupcache protocol buffers - internal crate
Documentation
syntax = "proto3";

package groupcache_pb;

message GetRequest {
  string key = 1;
}

message GetResponse {
  optional bytes value = 1;
}

message RemoveRequest {
  string key = 1;
}

message RemoveResponse {}

service Groupcache {
  rpc Get(GetRequest) returns (GetResponse) {};
  rpc Remove(RemoveRequest) returns (RemoveResponse) {};
}