calvesca's picture
Upload folder using huggingface_hub
0bd62e5 verified
raw
history blame contribute delete
288 Bytes
import { logos, tweets } from "$lib/assets";
export async function load({ fetch }: any) {
let r = await fetch("https://api.github.com/repos/gradio-app/gradio");
let j = await r.json();
let star_count = j.stargazers_count;
return {
logos,
tweets,
star_count
};
}