mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
16 lines
214 B
PHP
16 lines
214 B
PHP
<?php
|
|
include_once 'nntmux/constants.php';
|
|
|
|
if ($argc > 1) {
|
|
$constant = $argv[1];
|
|
include_once 'nntmux/constants.php';
|
|
if (defined($constant)) {
|
|
exit(constant($constant));
|
|
}
|
|
|
|
}
|
|
|
|
exit(dirname(__FILE__));
|
|
|
|
?>
|