init commit

This commit is contained in:
Ayzen
2026-03-05 14:42:33 +03:00
commit fd4618b20d
964 changed files with 325114 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"""Shared-memory ring readers and payload decoders."""
from python_app.orchestration.shm.binary_cursor import ByteCursor
from python_app.orchestration.shm.decoder import (
PREPROC_MAGIC,
RAW_MAGIC,
RESULT_MAGIC,
decode_result_collection,
decode_trace_collection,
)
from python_app.orchestration.shm.ring_reader import ShmRingReader
__all__ = [
"ByteCursor",
"PREPROC_MAGIC",
"RAW_MAGIC",
"RESULT_MAGIC",
"ShmRingReader",
"decode_result_collection",
"decode_trace_collection",
]