Add deploy.py: multi-device build/flash/provision with JSON config. Add espmon/: real-time ESP32 fleet monitoring daemon. Remove tools/flasher/ and tools/provisioning/ (superseded).
8 lines
121 B
Python
8 lines
121 B
Python
#!/usr/bin/env python3
|
|
"""Entry point for: python -m espmon"""
|
|
|
|
import sys
|
|
from espmon.cli import main
|
|
|
|
sys.exit(main())
|