Files
opengifame/pages/api/ping.ts
Fergal Moran 70fd8fe937 Upload working
2022-11-05 21:19:03 +00:00

10 lines
181 B
TypeScript

import { NextApiRequest, NextApiResponse } from 'next';
export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
return {
ping: 'pong',
};
}