page.proto 255 B

12345678910111213
  1. syntax = "proto3";
  2. package cache;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. message responseCache {
  5. int32 Status = 1;
  6. map<string, headerValue> Header = 2;
  7. bytes Data = 3;
  8. }
  9. message headerValue {
  10. repeated string Value = 1;
  11. }