shlink/public/index.php

9 lines
141 B
PHP
Raw Normal View History

2016-04-10 02:38:07 -05:00
<?php
2016-04-10 02:52:44 -05:00
use Zend\Expressive\Application;
2016-04-10 02:38:07 -05:00
chdir(dirname(__DIR__));
2016-04-10 02:52:44 -05:00
/** @var Application $app */
$app = include 'config/app.php';
2016-04-10 02:38:07 -05:00
$app->run();