mirror of
https://github.com/pe1hvh/meshcore-gui.git
synced 2026-06-30 15:00:56 +02: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())
|