Small Website to play Web-based games.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

11 строки
291 B

  1. import {NextApiRequest, NextApiResponse} from 'next';
  2. import {Game, getAvailableGames} from '../../utils/games';
  3. export default async function handler(
  4. req: NextApiRequest,
  5. res: NextApiResponse<Game[]>
  6. ) {
  7. const gameManifests = await getAvailableGames();
  8. res.json(gameManifests);
  9. }