mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
18 lines
324 B
PHP
18 lines
324 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';
|
|
}
|
|
|
|
} |