6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import type { ServiceHandler } from '../service';
|
|
|
|
export const handle: ServiceHandler = () => {
|
|
return { logo: 'https://cdn.rawgit.com/Radarr/Radarr/develop/Logo/Radarr.svg' };
|
|
};
|