mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-22 09:38:44 +00:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { NextApiRequest, NextApiResponse } from 'next';
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse
|
|
) {
|
|
return {
|
|
ping: 'pong',
|
|
};
|
|
}
|