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