summaryrefslogtreecommitdiff
path: root/plugins/kv/payload.proto
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kv/payload.proto')
-rw-r--r--plugins/kv/payload.proto17
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/kv/payload.proto b/plugins/kv/payload.proto
deleted file mode 100644
index 66a22ee4..00000000
--- a/plugins/kv/payload.proto
+++ /dev/null
@@ -1,17 +0,0 @@
-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;
-}