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