Heimdall/app/SupportedApps/Lidarr.php

13 lines
243 B
PHP
Raw Normal View History

<?php namespace App\SupportedApps;
class Lidarr implements Contracts\Applications {
public function defaultColour()
{
2018-02-14 17:05:36 +00:00
return '#183c18';
}
public function icon()
{
return 'supportedapps/lidarr.png';
}
2018-02-14 17:05:36 +00:00
}