2021-08-06 16:23:33 -03:00

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.'
)
}