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