Create FreshRSS.php

This commit is contained in:
chbmb
2018-07-19 19:56:39 +01:00
committed by GitHub
parent 9a55e05943
commit 03e16415aa

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';
}
}