refactor(proprietary): move scrapers/ -> platforms/ (one subpackage per platform)

This commit is contained in:
CREDO23 2026-07-03 11:01:45 +02:00
parent 9fe9c5b71d
commit 3312a442f3
25 changed files with 30 additions and 33 deletions

View file

@ -6,7 +6,7 @@ import pytest
from app.capabilities.youtube.comments.executor import build_comments_executor
from app.capabilities.youtube.comments.schemas import CommentsInput, CommentsOutput
from app.proprietary.scrapers.youtube import YouTubeCommentsInput
from app.proprietary.platforms.youtube import YouTubeCommentsInput
pytestmark = pytest.mark.unit

View file

@ -10,7 +10,7 @@ import pytest
from app.capabilities.youtube.scrape.executor import build_scrape_executor
from app.capabilities.youtube.scrape.schemas import ScrapeInput, ScrapeOutput
from app.proprietary.scrapers.youtube import YouTubeScrapeInput
from app.proprietary.platforms.youtube import YouTubeScrapeInput
pytestmark = pytest.mark.unit