mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-14 07:12:19 +00:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
import AppConfigService from '$lib/services/app-config-service';
|
|
import type { LayoutLoad } from './$types';
|
|
|
|
export const load: LayoutLoad = async () => {
|
|
const appConfigService = new AppConfigService();
|
|
|
|
const versionInformation = await appConfigService.getVersionInformation();
|
|
return {
|
|
versionInformation
|
|
};
|
|
};
|