tui/bin/letters

13 lines
357 B
Text
Raw 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;
$application = new Application('Anagram Finder', '1.0.0');
$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();