We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbe1222 commit eb15479Copy full SHA for eb15479
1 file changed
src/ohip_logging/__init__.py
@@ -0,0 +1,26 @@
1
+"""
2
+IX-HapticSight structured logging package.
3
+
4
+This package is reserved for:
5
+- structured event models
6
+- event serialization
7
+- replay-safe log writing
8
+- evidence bundle helpers
9
10
+It is intentionally separate from:
11
+- the stable OHIP protocol core in ``src/ohip``
12
+- runtime orchestration in ``src/ohip_runtime``
13
+- future ROS 2 integration layers
14
15
+The design goal is simple:
16
+important runtime behavior should be inspectable after the fact without relying
17
+on ad hoc console output or scattered backend logs.
18
19
20
+from __future__ import annotations
21
22
+__all__ = [
23
+ "__version__",
24
+]
25
26
+__version__ = "0.1.0"
0 commit comments