mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import type { CustomerAddressEndpoint } from '.'
|
|
|
|
const getCards: CustomerAddressEndpoint['handlers']['getAddresses'] = async ({
|
|
res,
|
|
}) => {
|
|
return res.status(200).json({ data: null, errors: [] })
|
|
}
|
|
|
|
export default getCards
|