This commit is contained in:
xds
2026-03-16 12:56:47 +03:00
parent c558117d7e
commit 569c9b4b06
6 changed files with 193 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
import asyncio
import sys
from pathlib import Path
from logging.config import fileConfig
# Add project root to sys.path so "backend.app..." imports work
sys.path.insert(0, str(Path(__file__).resolve().parents[2]))
from alembic import context
from sqlalchemy import pool
from sqlalchemy.ext.asyncio import create_async_engine