11 lines
311 B
PHP
Executable File
11 lines
311 B
PHP
Executable File
#!/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(); |