This commit is contained in:
xiaojunnuo
2024-11-06 01:29:13 +08:00
parent 80f8fd49f1
commit 0c3a812825
4 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
// LRUCache
import { LRUCache } from "lru-cache";
import { LRUCache } from 'lru-cache';
export const cache = new LRUCache<string, any>({
max: 1000,