site/pages/api/games.js

18 lines
322 B
JavaScript

export async function getGames() {
try {
let games = await fetch(
'https://sprig.hackclub.com/api/gallery?new'
).then(res => res.json())
return games
} catch(e) {
console.error(e)
return []
}
}
export default async function Games(req, res) {
const games = await getGames()
res.json(games)
}