mirror of
https://github.com/eddieoz/LoRa-Mesh-Analyzer.git
synced 2026-03-28 17:42:59 +01:00
9 lines
157 B
Python
Executable File
9 lines
157 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Entry point for the Meshtastic Network Monitor.
|
|
"""
|
|
from mesh_analyzer.monitor import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|