openvk/openvkctl

17 lines
321 B
Text
Raw Normal View History

2022-04-05 15:54:53 +03:00
#!/usr/bin/env php
<?php
declare(strict_types=1);
2022-04-05 15:54:53 +03:00
namespace openvk;
2022-04-05 15:54:53 +03:00
use Symfony\Component\Console\Application;
2025-01-31 19:51:09 +03:00
require(__DIR__ . "/chandler_loader.php");
2022-04-05 15:54:53 +03:00
$application = new Application();
$application->add(new CLI\RebuildImagesCommand());
$application->add(new CLI\FetchToncoinTransactions());
2022-04-05 15:54:53 +03:00
$application->run();