Initial commit

This commit is contained in:
shafat420
2025-04-25 12:18:41 +06:00
commit 72eda2bf5c
18 changed files with 3865 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
export const ANILIST_URL = 'https://graphql.anilist.co';
export const ANILIST_QUERY = `
query ($id: Int) {
Media(id: $id, type: ANIME) {
id
title {
romaji
english
native
userPreferred
}
episodes
synonyms
}
}
`;
export const HIANIME_URL = 'https://hianimez.to';
export const ANIZIP_URL = 'https://api.ani.zip/mappings';
export default {
ANILIST_URL,
ANILIST_QUERY,
HIANIME_URL,
ANIZIP_URL
};