10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Plugin\AzuraCastOnDemandHls\Config;
|
|
|
|
return [
|
|
Config::class => static fn(): Config => Config::fromEnvironment(),
|
|
];
|