Files
LoRa-Mesh-Analyzer/main.py

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()