Files
hianime-api/src/controllers/allGenres.controller.ts
2026-03-27 00:33:48 +06:00

49 lines
674 B
TypeScript

const allGenres: string[] = [
'action',
'adventure',
'cars',
'comedy',
'dementia',
'demons',
'drama',
'ecchi',
'fantasy',
'game',
'harem',
'historical',
'horror',
'isekai',
'josei',
'kids',
'magic',
'martial arts',
'mecha',
'military',
'music',
'mystery',
'parody',
'police',
'psychological',
'romance',
'samurai',
'school',
'sci-fi',
'seinen',
'shoujo',
'shoujo ai',
'shounen',
'shounen ai',
'slice of life',
'space',
'sports',
'super power',
'supernatural',
'thriller',
'vampire',
];
const allGenresController = (): string[] => {
return allGenres;
};
export default allGenresController;