#!/usr/bin/php -q
<?php

require_once __DIR__ . '/vendor/autoload.php';

use Simples\Kernel\App;

$service = argv($argv);

if (!$service) {
    $service = ['help'];
}

$options = [
    'root' => __DIR__
];

$app = new App($options);

$app->cli($service);
