24 lines
598 B
TypeScript
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(),
|
|
};
|
|
};
|