mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-21 16:38:37 -06:00
11 lines
189 B
PHP
Executable File
11 lines
189 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
/** @var Application $app */
|
|
$app = require __DIR__ . '/../config/cli-app.php';
|
|
$app->run();
|