commerce/pages/api/customer.ts
2021-05-20 14:03:52 -05:00

9 lines
285 B
TypeScript

import customer from '@commerce/api/endpoints/customer'
import { CustomerAPI, operations } from '@framework/api/endpoints/customer'
import commerce from '@lib/api/commerce'
export default commerce.endpoint({
handler: customer as CustomerAPI['endpoint']['handler'],
operations,
})