Create Unraid.php

This commit is contained in:
chbmb 2018-04-29 01:27:48 +01:00 committed by GitHub
parent 67e0f8570e
commit ec64c7ba0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Unraid implements Contracts\Applications {
public function defaultColour()
{
return '#3B5E1F';
}
public function icon()
{
return 'supportedapps/unraid.png';
}
}