11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
/**
|
|
* This is an example endpoint for an app, these will run under `/api/integrations/[...args]`
|
|
* @param req
|
|
* @param res
|
|
*/
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
res.status(200);
|
|
}
|