mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
13 lines
243 B
PHP
13 lines
243 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Unraid implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#BF4C23';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/unraid.png';
|
|
}
|
|
}
|