9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import type { ServiceHandler } from '../service';
|
|
|
|
export const handle: ServiceHandler = () => {
|
|
return {
|
|
logo: 'https://cdn.rawgit.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg',
|
|
subtitle: 'Media Server'
|
|
};
|
|
};
|