commerce/pages/api/customer.ts
2021-05-20 21:05:56 -05:00

9 lines
281 B
TypeScript

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