Files
Rediska/proto/v1/collections/element_kind.proto
Nikita Astafyev 35a6349071
Some checks failed
Code Analysis / analysis (push) Failing after 2m59s
chore: initial commit
2025-12-30 22:34:58 +07:00

12 lines
148 B
Protocol Buffer

syntax = "proto3";
package v1.collections.common;
enum ElementKind {
INT = 0;
FLOAT = 1;
BOOL = 2;
STRING = 3;
OBJECT = 4;
LIST = 5;
}