chore: initial commit
Some checks failed
Code Analysis / analysis (push) Failing after 2m59s

This commit is contained in:
2025-12-30 22:34:58 +07:00
commit 35a6349071
63 changed files with 2675 additions and 0 deletions

View File

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