mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
13 lines
353 B
Text
13 lines
353 B
Text
|
#!/usr/bin/env php
|
||
|
<?php declare(strict_types=1);
|
||
|
namespace openvk;
|
||
|
use Symfony\Component\Console\Application;
|
||
|
|
||
|
$_SERVER["HTTP_ACCEPT_LANGUAGE"] = false;
|
||
|
$bootstrap = require(__DIR__ . "/../../../chandler/Bootstrap.php");
|
||
|
$bootstrap->ignite(true);
|
||
|
|
||
|
$application = new Application();
|
||
|
$application->add(new CLI\RebuildImagesCommand);
|
||
|
|
||
|
$application->run();
|