Files
Rediska/proto/v1/collections/common.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

20 lines
314 B
Protocol Buffer

syntax = "proto3";
package v1.collections.common;
message CollectionElement {
enum SpecialElementKind {
STR = 0;
OBJ = 1;
}
SpecialElementKind special_element_kind = 1;
oneof element {
int64 integer = 2;
double floating_point = 3;
string str_or_obj = 4;
bool boolean = 5;
}
}