refactor: consolidate nfo modules into src/server/nfo/
Move nfo_models, tmdb_client, nfo_generator, nfo_mapper from scattered temp directories into single src/server/nfo/ package. Update all imports to reflect new structure. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -6,7 +6,7 @@ import aiohttp
|
||||
import pytest
|
||||
from aiohttp import ClientResponseError, ClientSession
|
||||
|
||||
from src.server.services_nfo_temp.tmdb_client import TMDBAPIError, TMDBClient
|
||||
from src.server.nfo.tmdb_client import TMDBAPIError, TMDBClient
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
||||
@@ -9,7 +9,7 @@ from unittest.mock import AsyncMock, MagicMock, patch
|
||||
import aiohttp
|
||||
import pytest
|
||||
|
||||
from src.server.services_nfo_temp.tmdb_client import TMDBAPIError, TMDBClient
|
||||
from src.server.nfo.tmdb_client import TMDBAPIError, TMDBClient
|
||||
|
||||
|
||||
def _make_ctx(response):
|
||||
|
||||
Reference in New Issue
Block a user