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 }); | |
} | |
}); |