Scheduler v1
All checks were successful
Test Build / test-build (push) Successful in 23s

This commit is contained in:
2025-07-30 18:28:55 +03:00
parent 8e757afe39
commit 0f1c749b33
7 changed files with 457 additions and 159 deletions

View File

@@ -2,10 +2,12 @@ from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_login import LoginManager
from flask_babel import Babel
from flask_apscheduler import APScheduler
# Создаем экземпляры расширений здесь, без привязки к приложению.
# Теперь любой модуль может безопасно импортировать их отсюда.
db = SQLAlchemy()
migrate = Migrate()
login_manager = LoginManager()
babel = Babel()
babel = Babel()
scheduler = APScheduler()