summaryrefslogtreecommitdiff
path: root/plugins/kv/payload.proto
blob: 66a22ee4588b4d318695e15787f868eee012dcf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";

package kv.v1;
option go_package = "./payload";

message Payload {
    // could be an enum in the future
    string storage = 1;
    repeated Item items = 2;
}

message Item {
    string key = 1;
    string value = 2;
    // RFC 3339
    string timeout = 3;
}