Files
Beacon/src/integrations/metadata/anilist/provider.ts
T
Uklonil 3aeaed0af2
CI / quality (push) Waiting to run
UPD: initial architecture
2026-07-27 10:23:50 +02:00

12 lines
302 B
TypeScript

import type { MetadataProvider } from "../metadata-provider";
export const anilistProvider: MetadataProvider = {
name: "ANILIST",
supports: (type) => type === "ANIME",
async search() {
return [];
},
async getDetails() {
throw new Error("AniList integration is not enabled.");
},
};