Files
newznab-tmux/NNBase.php
T
2017-04-04 15:13:10 +02:00

16 lines
279 B
PHP

<?php
include_once __DIR__ . DIRECTORY_SEPARATOR . 'nntmux/constants.php';
if ($argc > 1) {
$constant = $argv[1];
include_once __DIR__ . DIRECTORY_SEPARATOR . 'nntmux/constants.php';
if (defined($constant)) {
exit(constant($constant));
}
}
exit(__DIR__ . __FILE__);
?>