Chloe 94a145b604 Add custome checkout function
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2022-05-08 13:04:25 +07:00

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