#!/usr/bin/env php * @copyright 2014 Christian Weiske * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 * @link http://cweiske.de/bdrem.htm */ namespace bdrem; if (file_exists(__DIR__ . '/../src/bdrem/Autoloader.php')) { include_once __DIR__ . '/../src/bdrem/Autoloader.php'; Autoloader::register(); } $cli = new Cli(); $cli->run(); ?>