Files
stats/apps/public/src/lib/github.ts
Carl-Gerhard Lindesvärd ac4429d6d9 feat: new public website
2025-12-02 09:22:36 +01:00

11 lines
212 B
TypeScript

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