mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 07:33:58 -06:00
9 lines
141 B
PHP
9 lines
141 B
PHP
<?php
|
|
use Zend\Expressive\Application;
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
/** @var Application $app */
|
|
$app = include 'config/app.php';
|
|
$app->run();
|