28 lines
635 B
PHP
Executable File
28 lines
635 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php declare(strict_types=1);
|
|
|
|
// Set up autoloader for third-party dependencies
|
|
require_once __DIR__ . '/vendor/autoload.php';
|
|
|
|
use Aviat\AnimeClient\Command;
|
|
use ConsoleKit\Console;
|
|
|
|
$_SERVER['HTTP_HOST'] = 'localhost';
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Start console script
|
|
// -----------------------------------------------------------------------------
|
|
try
|
|
{
|
|
(new Console([
|
|
'cache:clear' => Command\CacheClear::class,
|
|
'cache:refresh' => Command\CachePrime::class,
|
|
// 'lists:sync' => Command\SyncLists::class,
|
|
]))->run();
|
|
}
|
|
catch (\Exception $e)
|
|
{
|
|
|
|
}
|
|
|