This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / cards / lib / dal.ts
268 B 9 lines
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});