Create Syncthing.php

This commit is contained in:
halorrr 2018-04-04 01:31:43 -04:00 committed by GitHub
parent 5dd44f66c1
commit 0e895089c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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