shlink/bin/cli.php

11 lines
280 B
PHP
Raw Normal View History

2016-08-15 02:21:14 -05:00
<?php
use Interop\Container\ContainerInterface;
use Symfony\Component\Console\Application as CliApp;
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
/** @var CliApp $app */
$app = $container->get(CliApp::class);
$app->run();