iptv-app/ui/src/storage/adapters/implement.js
2026-02-11 00:20:00 +08:00

24 lines
458 B
JavaScript

export class IStorage {
// 基础操作
async get(key) {
throw new Error("Not implemented");
}
async set(key, value) {
throw new Error("Not implemented");
}
async remove(key) {
throw new Error("Not implemented");
}
async clear() {
throw new Error("Not implemented");
}
// 频道数据
async getGroups() {
throw new Error("Not implemented");
}
async getChannels() {
throw new Error("Not implemented");
}
}