mirror of
https://github.com/pe1hvh/meshcore-gui.git
synced 2026-03-28 17:42:38 +01:00
11 lines
166 B
Python
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())
|