mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
12 lines
151 B
PHP
12 lines
151 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\Http;
|
|
|
|
enum StreamingMethod: string
|
|
{
|
|
case NGINX = 'nginx';
|
|
case RESPONSE = 'response';
|
|
}
|