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. }