eslint fix

This commit is contained in:
mtvpls
2026-01-23 16:41:49 +08:00
parent a167763324
commit 6eaed34b14
107 changed files with 311 additions and 318 deletions
+4 -3
View File
@@ -1,11 +1,12 @@
import { NextRequest, NextResponse } from 'next/server';
import { getConfig } from '@/lib/config';
import {
searchTMDBMulti,
getTMDBImageUrl,
getTMDBMovieRecommendations,
getTMDBTVRecommendations,
getTMDBImageUrl,
searchTMDBMulti,
} from '@/lib/tmdb.client';
import { getConfig } from '@/lib/config';
// 服务器端缓存(1天)
const searchCache = new Map<string, { data: any; timestamp: number }>();