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

$basePath = realpath(__DIR__ . '/../');
// Composer Autoloader
$loader = require $basePath . '/vendor/autoload.php';

$cli = new \Directus\Console\Cli($basePath);
$cli->run();

?>
