Fix Like model import path in SqlLikesService
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m57s

Inside the likes container the model is at models.like not
likes.models.like — the container's Python path is /app.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-04 08:52:51 +00:00
parent 336a4ad9a1
commit 8e16cc459a

View File

@@ -10,7 +10,7 @@ from sqlalchemy.ext.asyncio import AsyncSession
def _Like():
from likes.models.like import Like
from models.like import Like
return Like