1
0
Files
h8-536-decoder/h8536_protocol_capture.py
2026-05-25 17:32:00 +10:00

9 lines
200 B
Python

#!/usr/bin/env python3
"""Compatibility wrapper for the H8/536 protocol capture-log analyzer CLI."""
from h8536.protocol_capture import main
if __name__ == "__main__":
raise SystemExit(main())