Skip to content

Commit eb15479

Browse files
authored
Create __init__.py
1 parent bbe1222 commit eb15479

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

src/ohip_logging/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)