1import { createSembleClient } from '@/services/apiClient';
2import { cache } from 'react';
3
4export const getUrlMetadata = cache(async (url: string) => {
5 const client = createSembleClient();
6 const response = await client.getUrlMetadata(url);
7
8 return response;
9});