mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 21:21:21 +00:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const checkoutApi = async (_req: NextApiRequest, res: NextApiResponse) => {
|
|
res.redirect(`https://wa.me/5491141634695`)
|
|
}
|
|
|
|
export default checkoutApi
|