mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
import type { PageLoad } from "./$types";
|
|
// import { Octokit } from "@octokit/rest";
|
|
|
|
// const github = new Octokit();
|
|
export const load: PageLoad = async () => {
|
|
// const { data: releases } = await github.repos.listReleases({
|
|
// owner: "KRTirtho",
|
|
// repo: "spotube",
|
|
// });
|
|
|
|
return {
|
|
releases: [],
|
|
};
|
|
};
|