Heimdall/app/SupportedApps/Nzbget.php

17 lines
319 B
PHP
Raw Normal View History

<?php namespace App\SupportedApps;
class Nzbget implements Contracts\Applications {
public function defaultColour()
{
2018-02-05 23:08:37 +00:00
return '#124019';
}
2018-02-05 20:59:38 +00:00
public function icon()
{
return 'supportedapps/nzbget.png';
}
2018-02-05 23:08:37 +00:00
public function configDetails()
{
return 'nzbget';
}
2018-02-05 20:59:38 +00:00
}