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