mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
12 lines
242 B
PHP
12 lines
242 B
PHP
<?php namespace App\SupportedApps;
|
|
|
|
class Webmin implements Contracts\Applications {
|
|
public function defaultColour()
|
|
{
|
|
return '#161b1f';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/webmin.svg';
|
|
}
|
|
} |