forked from ProjectSegfault/website
5 lines
196 B
TypeScript
5 lines
196 B
TypeScript
|
import type { PageServerLoad } from "./$types";
|
||
|
|
||
|
export const load: PageServerLoad = async () => {
|
||
|
return await fetch("https://api.projectsegfau.lt/api/v1/status").then((res) => res.json());
|
||
|
}
|