webcompile/src/routes/instances/+page.server.ts

9 lines
336 B
TypeScript
Raw Normal View History

2022-11-10 00:12:34 +05:30
import type { PageServerLoad } from "./$types";
2022-12-06 20:30:23 +05:30
import { env } from "$env/dynamic/private";
2022-11-10 00:12:34 +05:30
export const load: PageServerLoad = async () => {
2022-12-13 21:07:58 +05:30
return {
state: await fetch(env.VITE_API_URL + "/api/v1/state/status").then((res) => res.json()),
instances: await fetch(env.VITE_API_URL + "/api/v1/status").then((res) => res.json())
}
2022-11-10 00:12:34 +05:30
}