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