openvk/openvkctl

20 lines
459 B
Text
Raw Permalink 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;
$_SERVER["HTTP_ACCEPT_LANGUAGE"] = false;
$bootstrap = require(__DIR__ . "/../../../chandler/Bootstrap.php");
$bootstrap->ignite(true);
$application = new Application();
2025-02-22 20:34:00 +03:00
$application->add(new CLI\UpgradeCommand());
$application->add(new CLI\RebuildImagesCommand());
$application->add(new CLI\FetchToncoinTransactions());
2022-04-05 15:54:53 +03:00
$application->run();