Added lcdbridge

This commit is contained in:
2014-06-15 00:34:33 +02:00
parent 093f164121
commit 3e4765d071
9 changed files with 242 additions and 11 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace NoccyLabs\LcdBridge;
use Symfony\Component\Console\Application as ConsoleApplication;
class LcdBridgeApplication extends ConsoleApplication
{
public static function main()
{
$app = new self("lcdbridge", "0.1");
$app->add( new DaemonCommand );
$app->run();
}
}