feat: enrich list API responses with CivitAI stats from local DB

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 14:34:51 +01:00
parent c1e124bcc8
commit c3cd35add7
3 changed files with 113 additions and 4 deletions
+4 -1
View File
@@ -8,7 +8,10 @@ from typing import Any
import aiohttp
from .config import remote_config
try:
from .config import remote_config
except ImportError:
from config import remote_config # type: ignore[no-redef]
logger = logging.getLogger(__name__)