Release 0.1.0

This commit is contained in:
xeon
2026-02-02 20:53:22 +03:00
commit 25660300dd
152 changed files with 882089 additions and 0 deletions

16
proto/pb/ss_common.proto Normal file
View File

@@ -0,0 +1,16 @@
syntax = "proto3";
package proto;
option go_package = "beyond-go/proto/pbsscommon;pbsscommon";
enum ObjStateType {
ObjStateNormal = 0;
ObjStateAbnormal = 1;
}
message OBJ_STATE {
string objid = 1;
ObjStateType state = 2;
}
message OBJ_LIST {
repeated string obj_ids = 1;
}