AzuraCast/bin/console

13 lines
234 B
Plaintext
Raw Normal View History

2019-07-10 07:45:10 +02:00
#!/usr/bin/env php
<?php
2021-07-19 07:53:45 +02:00
declare(strict_types=1);
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
2021-07-19 07:53:45 +02:00
ini_set('display_errors', '1');
2022-05-08 20:05:02 +02:00
require dirname(__DIR__) . '/vendor/autoload.php';
2023-11-02 14:22:32 +01:00
$cli = App\AppFactory::createCli();
$cli->run();