mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 05:31:22 +00:00
9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
import customer from '@commerce/api/endpoints/customer'
|
|
import { CustomerAPI, operations } from '@framework/api/customer'
|
|
import commerce from '@lib/api/commerce'
|
|
|
|
export default commerce.endpoint({
|
|
handler: customer as CustomerAPI['endpoint']['handler'],
|
|
operations,
|
|
})
|