Spaces:
Runtime error
Runtime error
File size: 183 Bytes
15bfa8d |
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')
}
|