mirror of
https://github.com/revanced/revanced-website.git
synced 2025-04-30 14:44:28 +02:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import type { Repository } from '$lib/types';
|
|
|
|
export type APIOutput = { repositories: Repository[] };
|
|
|
|
export async function load({
|
|
fetch
|
|
}): APIOutput {
|
|
const response = await fetch('https://releases.rvcd.win/contributors');
|
|
return await response.json();
|
|
}
|