#!/usr/bin/env php
<?php

if (PHP_SAPI !== 'cli') {
	echo "This command can only be run from a command-line." . PHP_EOL;
	exit(1);
}

require __DIR__ . '/../include/lib/Paheko/CLI.php';

$args = $_SERVER['argv'];
unset($args[0]);

$cli = new \Paheko\CLI;
$cli->run($args);
