refactor(backend): split log files into separate file
This commit is contained in:
@@ -12,7 +12,7 @@ interface MovieRecommendation {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const cache = createCache<MovieRecommendation[]>();
|
||||
const cache = createCache<MovieRecommendation[]>("movie-recommendations");
|
||||
|
||||
function extractListFromResponse(response?: string): string[] {
|
||||
if (!response) return [];
|
||||
|
||||
Reference in New Issue
Block a user