summaryrefslogtreecommitdiff
path: root/plugins/kv/payload/payload.fbs
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-06-08 22:36:40 +0300
committerGitHub <[email protected]>2021-06-08 22:36:40 +0300
commit4f3e16892479db4bd8280a46987f3105e46e5c96 (patch)
tree13c4c3f380d8309b95c9600cc2000d1d5ab87cda /plugins/kv/payload/payload.fbs
parent49ce25e80ba99ac91bce7ea2b9b632de53e07c0d (diff)
parentcc271dceb13d3929f0382311dfce3dfed2ce04ce (diff)
#712 feat(ws, kv): switch from the `flatbuffers` to the `protobuf`v2.3.0-beta.2
#712 feat(ws, kv): switch from the `flatbuffers` to the `protobuf`
Diffstat (limited to 'plugins/kv/payload/payload.fbs')
-rw-r--r--plugins/kv/payload/payload.fbs14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/kv/payload/payload.fbs b/plugins/kv/payload/payload.fbs
deleted file mode 100644
index 7e02c1a0..00000000
--- a/plugins/kv/payload/payload.fbs
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace generated;
-
-table Payload {
- Storage:string;
- Items:[Item];
-}
-
-table Item {
- Key:string;
- Value:string;
- Timeout:string;
-}
-
-root_type Payload;