mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
12 lines
248 B
PHP
12 lines
248 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Portainer implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#283f44';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/portainer.png';
|
|
}
|
|
} |