Create FreshRSS.php

This commit is contained in:
chbmb 2018-07-19 19:56:39 +01:00 committed by GitHub
parent 9a55e05943
commit 03e16415aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,11 @@
<?php namespace App\SupportedApps;
class FreshRSS implements Contracts\Applications {
public function defaultColour()
{
return '#003B73';
}
public function icon()
{
return 'supportedapps/freshrss.png';
}
}