增加剧集更新检查

This commit is contained in:
mtvpls
2025-12-18 23:44:14 +08:00
parent 0ae5923b4b
commit c60e25ded6
12 changed files with 864 additions and 9 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ function createStorage(): IStorage {
// 单例存储实例
let storageInstance: IStorage | null = null;
function getStorage(): IStorage {
export function getStorage(): IStorage {
if (!storageInstance) {
storageInstance = createStorage();
}