EMAIL_TEMPLATE/run.py
Patsy dec4fbe68d
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
Phase 1 done
2026-08-07 16:46:44 +02:00

10 lines
No EOL
147 B
Python

"""
Café Bach Email Generator - Run Script
"""
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)