mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 12:11:22 +00:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { Fetcher } from '@commerce/utils/types'
|
|
|
|
export const fetcher: Fetcher = async () => {
|
|
throw new Error(
|
|
'Client side fetching has not been implemented yet, try to fetch from server side.'
|
|
)
|
|
}
|