mirror of
https://github.com/eddieoz/LoRa-Mesh-Analyzer.git
synced 2026-05-06 21:42:45 +02:00
9 lines
156 B
Python
Executable File
9 lines
156 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Entry point for the Meshtastic Network Monitor.
|
|
"""
|
|
from mesh_monitor.monitor import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|