2026-08-30 23:38:24 +02:00
|
|
|
#!/usr/bin/env php
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require __DIR__ . '/../autoload.php';
|
|
|
|
|
|
2026-08-31 00:13:38 +02:00
|
|
|
use Lvl0\Countdown\TUI\Commands\FindNumbersCommand;
|
2026-08-30 23:38:24 +02:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
|
|
|
|
|
|
$application = new Application('Countdown numbers Finder', '1.0.0');
|
|
|
|
|
$application->addCommand(new FindNumbersCommand());
|
|
|
|
|
$application->setDefaultCommand('find-numbers');
|
|
|
|
|
$application->run();
|