Heimdall/app/SupportedApps/Sonarr.php

12 lines
242 B
PHP
Raw Normal View History

<?php namespace App\SupportedApps;
class Sonarr implements Contracts\Applications {
public function defaultColour()
{
2018-02-13 18:29:15 +00:00
return '#163740';
}
public function icon()
{
return 'supportedapps/sonarr.png';
}
}