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