- Moved legacy entry point to init.py - Created src/__init__.py for module initialization - Implemented AlarmClock class in src/alarm_clock.py - Added audio playback capabilities in src/audio.py - Configured Shelly device interaction in src/shelly.py - Introduced wakeup action handling in src/wakeup_action.py - Added location utilities for sun times in src/location.py - Established configuration settings in src/config.py - Developed main application logic in src/main.py
11 lines
163 B
Python
11 lines
163 B
Python
"""
|
|
Legacy entry point - redirects to src.main
|
|
|
|
For new development, use: python -m src.main
|
|
"""
|
|
|
|
from src.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|