9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
import {env} from '$env/dynamic/private';
|
|
import {WorkingHoursViewsRepository} from "$lib/Repositories.svelte";
|
|
|
|
export function load() {
|
|
return {
|
|
title: 'Jahresansicht',
|
|
promise: WorkingHoursViewsRepository.yearly(env.API_URL)
|
|
};
|
|
} |