mirror of
https://github.com/vercel/commerce.git
synced 2025-05-11 20:27:51 +00:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import { getOrderConfirmationContent } from 'lib/shopify';
|
|
|
|
export async function GET() {
|
|
const data = await getOrderConfirmationContent();
|
|
|
|
return Response.json({ ...data });
|
|
}
|