mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-17 07:49:54 +03:00
8 lines
141 B
PHP
8 lines
141 B
PHP
<?php
|
|
use Zend\Expressive\Application;
|
|
|
|
chdir(dirname(__DIR__));
|
|
|
|
/** @var Application $app */
|
|
$app = include 'config/app.php';
|
|
$app->run();
|