File size: 495 Bytes
a6fbcb7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import express from 'express';
import { AnimeHentai } from '../scrapper.js';
const HentaiRoutes = express.Router();
HentaiRoutes.get('/api/v1/hentai-anime', async (req, res) => {
try {
const result = await AnimeHentai();
if (result) {
res.json({ result });
} else {
res.status(404).json({ error: "No result found." });
}
} catch (error) {
res.status(500).json({ error: error.message });
}
});
export { HentaiRoutes }; |