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