frontend/src/routes/industry/+page.server.ts
2024-09-20 01:14:48 +02:00

24 lines
598 B
TypeScript

export const load = async ({ locals, setHeaders }) => {
const getSectorIndustryOverview = async () => {
const { apiKey, apiURL } = locals;
const response = await fetch(apiURL + "/sector-industry-overview", {
method: "GET",
headers: {
"Content-Type": "application/json",
"X-API-KEY": apiKey,
},
});
const output = await response?.json();
setHeaders({ "cache-control": "public, max-age=3000" });
return output;
};
// Make sure to return a promise
return {
getSectorIndustryOverview: await getSectorIndustryOverview(),
};
};