Files
commerce/framework/ordercloud/api/endpoints/customer/card/get-cards.ts
2021-09-23 16:28:50 -03:00

10 lines
219 B
TypeScript

import type { CustomerCardEndpoint } from '.'
const getCards: CustomerCardEndpoint['handlers']['getCards'] = async ({
res,
}) => {
return res.status(200).json({ data: null, errors: [] })
}
export default getCards