mirror of
https://github.com/openvk/openvk
synced 2025-03-03 16:20:04 +03:00
16 lines
321 B
PHP
Executable file
16 lines
321 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
require(__DIR__ . "/chandler_loader.php");
|
|
|
|
$application = new Application();
|
|
$application->add(new CLI\RebuildImagesCommand());
|
|
$application->add(new CLI\FetchToncoinTransactions());
|
|
|
|
$application->run();
|