mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
feat: add catalog, meta, posts, and stream modules for Animetsu provider
This commit is contained in:
24
providers/animetsu/catalog.ts
Normal file
24
providers/animetsu/catalog.ts
Normal 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 = [];
|
||||
Reference in New Issue
Block a user