Files
meshcore-gui/tools/ble_observe/__main__.py
2026-03-09 17:53:29 +01:00

11 lines
166 B
Python

"""BLE observe tool entrypoint.
Usage:
python -m tools.ble_observe [options]
"""
from .cli import main
if __name__ == "__main__":
raise SystemExit(main())