Files
flanders/src/lib/services/prowlarr/+service.ts
Alexandre Tuleu edbbd2f0f6 Refactors loading function
* Initialize service component and handler in hooks
* Dynamically watch the config instead of a reload on each page
* Uses derived store for public server config
* Moves service data in its own page data property
* Reverts to a array to store group/services
2023-08-13 14:19:39 +02:00

8 lines
235 B
TypeScript

import type { ServiceComponentPath, ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return { prowlardata: 'coucou' };
};
export const path: ServiceComponentPath = 'prowlarr/ProwlarrContent.svelte';