ryu-js / plugins /tebak.js
randydev's picture
Update plugins/tebak.js
f2bfd2b verified
raw
history blame
800 Bytes
import express from 'express';
import { tebakgambar } from '../scrapper.js';
const TebakRoutes = express.Router();
/**
* @swagger
* /api/v1/tebakgambar:
* get:
* summary: tebak gambar Random
* parameters:
* - in: query
* name: query
* required: true
* description: null
* schema:
* type: string
* responses:
* 200:
* description: Success
*/
app.get('/api/v1/tebakgambar', async (req, res) => {
try {
const result = await tebakgambar();
if (result) {
res.json({ result });
} else {
res.status(404).json({ error: "No result found." });
}
} catch (error) {
res.status(500).json({ error: error.message });
}
});
export { TebakRoutes };