Files
newznab-tmux/NNBase.php
T
2017-02-22 15:38:45 +01:00

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__));
?>