tui/bin/numbers

13 lines
357 B
Text
Raw Permalink Normal View History

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;
2026-08-31 01:01:41 +02:00
$application = new Application('Countdown Numbers Solver', '0.1.3');
2026-08-30 23:38:24 +02:00
$application->addCommand(new FindNumbersCommand());
2026-08-31 01:01:41 +02:00
$application->setDefaultCommand('countdown:numbers');
2026-08-30 23:38:24 +02:00
$application->run();