mirror of
https://github.com/documenso/documenso.git
synced 2025-11-26 06:32:08 +10:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
type Data = {
|
|
name: string;
|
|
};
|
|
|
|
export default function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse<Data>
|
|
) {
|
|
res.status(200).json({ name: "Api up and running :)" });
|
|
}
|