Spaces:
Paused
Paused
File size: 275 Bytes
88b2903 |
1 2 3 4 5 6 7 8 9 10 11 |
import { DailyPapersApiResponse } from "./types.mts"
export async function getDailyPapers(): Promise<DailyPapersApiResponse> {
const res = await fetch(`https://hf.co/api/daily_papers`)
const articles = (await res.json()) as DailyPapersApiResponse
return articles
} |