5 lines
104 B
Python
5 lines
104 B
Python
"""Точка входа для gunicorn — app:app."""
|
|
from app import create_app
|
|
|
|
app = create_app()
|