2025-12-27 15:33:06 +00:00
|
|
|
export { matchers } from './matchers.js';
|
|
|
|
|
|
|
|
|
|
export const nodes = [
|
|
|
|
|
() => import('./nodes/0'),
|
|
|
|
|
() => import('./nodes/1'),
|
|
|
|
|
() => import('./nodes/2'),
|
|
|
|
|
() => import('./nodes/3'),
|
|
|
|
|
() => import('./nodes/4'),
|
|
|
|
|
() => import('./nodes/5'),
|
|
|
|
|
() => import('./nodes/6'),
|
2025-12-27 17:54:22 +00:00
|
|
|
() => import('./nodes/7'),
|
|
|
|
|
() => import('./nodes/8'),
|
|
|
|
|
() => import('./nodes/9'),
|
|
|
|
|
() => import('./nodes/10'),
|
|
|
|
|
() => import('./nodes/11')
|
2025-12-27 15:33:06 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export const server_loads = [];
|
|
|
|
|
|
|
|
|
|
export const dictionary = {
|
|
|
|
|
"/": [2],
|
2025-12-27 17:54:22 +00:00
|
|
|
"/auth/callback/google": [3],
|
|
|
|
|
"/cost-tracker": [4],
|
|
|
|
|
"/data-audit": [5],
|
|
|
|
|
"/drift-monitor": [6],
|
|
|
|
|
"/eda-gapminder": [7],
|
|
|
|
|
"/house-predictor": [8],
|
|
|
|
|
"/inference-estimator": [9],
|
|
|
|
|
"/login": [10],
|
|
|
|
|
"/privacy-scanner": [11]
|
2025-12-27 15:33:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const hooks = {
|
|
|
|
|
handleError: (({ error }) => { console.error(error) }),
|
|
|
|
|
|
|
|
|
|
reroute: (() => {}),
|
|
|
|
|
transport: {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const decoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.decode]));
|
|
|
|
|
export const encoders = Object.fromEntries(Object.entries(hooks.transport).map(([k, v]) => [k, v.encode]));
|
|
|
|
|
|
|
|
|
|
export const hash = false;
|
|
|
|
|
|
|
|
|
|
export const decode = (type, value) => decoders[type](value);
|
|
|
|
|
|
|
|
|
|
export { default as root } from '../root.svelte';
|