432aa19
1
2
3
4
5
6
7
8
'use server' import { NextApiRequest, NextApiResponse } from 'next' export default async function handler(req: NextApiRequest, res: NextApiResponse) { res.status(200).end('ok') }