mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 04:05:07 +02:00
21 lines
522 B
PHP
21 lines
522 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
class AudioConstants
|
|
{
|
|
final public const string DEFAULT_DISK_QUALIFIED = 'audio.default_disk';
|
|
|
|
final public const string DISKS_QUALIFIED = 'audio.disks';
|
|
|
|
final public const string NGINX_REDIRECT_QUALIFIED = 'audio.nginx_redirect';
|
|
|
|
final public const string PATH_QUALIFIED = 'audio.path';
|
|
|
|
final public const string STREAMING_METHOD_QUALIFIED = 'audio.streaming_method';
|
|
|
|
final public const string URL_QUALIFIED = 'audio.url';
|
|
}
|