This commit is contained in:
2023-09-14 10:18:54 +02:00
parent e4d1b83108
commit b2f2c2af44
5 changed files with 36 additions and 36 deletions

View File

@@ -1,7 +1,9 @@
import { type ServiceComponentPath, type ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return { piholedata: 'coucou' };
const res = { logo: 'https://cdn.rawgit.com/pi-hole/graphics/master/Vortex/Vortex.svg' };
return res;
};
export const path: ServiceComponentPath = 'pihole/PiHoleContent.svelte';