Files
litlyx/payments/src/Utils.ts
2025-03-26 15:30:22 +01:00

6 lines
170 B
TypeScript

import type { Response } from "express";
export function sendJson(res: Response, status: number, data: Record<string, any>): void {
res.status(status).json(data);
}