mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
14 lines
289 B
PHP
14 lines
289 B
PHP
<?php
|
|
|
|
include_once __DIR__.DIRECTORY_SEPARATOR.'bootstrap/constants.php';
|
|
|
|
if ($argc > 1) {
|
|
$constant = $argv[1];
|
|
include_once __DIR__.DIRECTORY_SEPARATOR.'bootstrap/constants.php';
|
|
if (defined($constant)) {
|
|
exit(constant($constant));
|
|
}
|
|
}
|
|
|
|
exit(__DIR__.__FILE__);
|