12 lines
302 B
TypeScript
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.");
|
|
},
|
|
};
|