site/pages/api/bucky.js
2024-08-17 14:28:07 -04:00

10 lines
No EOL
283 B
JavaScript

export default async function handler(req, res) {
const result = await fetch("https://bucky.hackclub.com", {
method: 'POST',
body: req.body,
headers: {
'Content-Type': req.headers['content-type']
}
}).then(r => r.text())
res.status(200).json({ result })
}