fix: структура под платформу — код в site/, requirements.txt в корне

This commit is contained in:
2026-06-01 05:17:20 +03:00
parent 9205492d01
commit 465bb37ea2
13 changed files with 0 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
"""
Роуты приложения Say.
pages.py — HTML-страницы (index, health).
api.py — REST API (список профилей, отправка речи).
"""
from .pages import pages_bp
from .api import api_bp
__all__ = ["pages_bp", "api_bp"]