2024-06-28 18:21:44 +03:00

8 lines
182 B
TypeScript

import { getOrderConfirmationContent } from 'lib/shopify';
export async function GET() {
const data = await getOrderConfirmationContent();
return Response.json({ ...data });
}