Heimdall/app/SupportedApps/Grafana.php

13 lines
257 B
PHP
Raw Normal View History

2018-03-25 04:23:15 +00:00
<?php namespace App\SupportedApps;
class Grafana implements Contracts\Applications {
public function defaultColour()
{
return '#a56e4d';
}
public function icon()
{
2018-03-25 04:29:46 +00:00
return 'supportedapps/grafana.png';
2018-03-25 04:23:15 +00:00
}
}