mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
12 lines
232 B
PHP
12 lines
232 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php';
|
|
|
|
use Blacklight\libraries\Forking;
|
|
|
|
try {
|
|
(new Forking())->processWorkType('releases');
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage();
|
|
}
|