mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
12 lines
244 B
PHP
12 lines
244 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Pfsense implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#4e4742';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/pfsense.png';
|
|
}
|
|
} |