mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
19 lines
347 B
PHP
19 lines
347 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Nzbget implements Contracts\Applications {
|
|
|
|
public function defaultColour()
|
|
{
|
|
return '#124019';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/nzbget.png';
|
|
}
|
|
public function configDetails()
|
|
{
|
|
//return 'nzbget';
|
|
return null;
|
|
}
|
|
|
|
} |