Files
stats/apps/public/lib/github.ts
2024-11-13 21:15:46 +01:00

7 lines
159 B
TypeScript

export async function getGithubRepoInfo() {
const res = await fetch(
'https://api.github.com/repos/Openpanel-dev/openpanel',
);
return res.json();
}