11 lines
311 B
PHP
11 lines
311 B
PHP
|
#!/usr/bin/env php
|
||
|
|
||
|
<?php
|
||
|
|
||
|
require __DIR__.'/vendor/autoload.php';
|
||
|
\Symfony\Component\Debug\Debug::enable();
|
||
|
$app = new \Symfony\Component\Console\Application();
|
||
|
|
||
|
$app->add(new \Sikofitt\SamsungTV\Console\Command\ChannelCommand());
|
||
|
$app->add(new \Sikofitt\SamsungTV\Console\Command\InputCommand());
|
||
|
$app->run();
|