Refactor tools module: removed unused tools, commented out legacy registrations, updated mock data in tests, consolidated imports, and standardized naming conventions in the codebase.

This commit is contained in:
Yûki VACHOT 2025-11-29 01:24:58 +01:00
parent ec0fe38861
commit 328e597f48
16 changed files with 86 additions and 386 deletions

View file

@ -9,11 +9,11 @@ import logging
from dataclasses import dataclass, field
from typing import Optional
from ..api.client import GeoGuessrClient
from ..models.Game import Game
from ..monitoring.schema_manager import schema_registry
from .game_service import GameService
from .profile_service import ProfileService
from ..api.client import GeoGuessrClient
from ..models.Game import Game
from ..monitoring.schema.SchemaRegistry import schema_registry
logger = logging.getLogger(__name__)