mirror of
https://github.com/ryanwtf7/hianime-api.git
synced 2026-04-17 21:41:44 +00:00
initial commit
This commit is contained in:
48
src/controllers/allGenres.controller.ts
Normal file
48
src/controllers/allGenres.controller.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user