tui/bin/letters

13 lines
367 B
Text
Raw Permalink Normal View History

2026-08-22 22:39:50 +02:00
#!/usr/bin/env php
<?php
require __DIR__ . '/../autoload.php';
2026-08-31 00:13:38 +02:00
use Lvl0\Countdown\TUI\Commands\FindAnagramWordsCommand;
2026-08-22 22:39:50 +02:00
use Symfony\Component\Console\Application;
2026-08-31 01:01:41 +02:00
$application = new Application('Countdown Letters Solver', '0.1.3');
2026-08-22 22:39:50 +02:00
$application->addCommand(new FindAnagramWordsCommand());
2026-08-31 00:13:38 +02:00
$application->setDefaultCommand('countdown:letters');
2026-08-22 22:39:50 +02:00
$application->run();