feat: add catalog, meta, posts, and stream modules for Animetsu provider

This commit is contained in:
himanshu8443
2025-07-27 11:02:34 +05:30
parent bf8ea22300
commit b18b4d23b4
8 changed files with 321 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
export const catalog = [
{
title: "Popular",
filter:
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=favourites&season=any&format=any&status=any",
},
{
title: "Trending",
filter:
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=trending&season=any&format=any&status=any",
},
{
title: "Top Rated",
filter:
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=rating&season=any&format=any&status=any",
},
{
title: "Recently Updated",
filter:
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=updated&season=any&format=any&status=any",
},
];
export const genres = [];