mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 06:55:51 +01:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { serviceItem } from './types';
|
|
|
|
export function pingQbittorrent(service: serviceItem): any {
|
|
console.log('Getting service.cookie for service: ', service);
|
|
if (!service.cookie) service.cookie = 'Test';
|
|
else console.log(service.cookie);
|
|
}
|