4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 21:26:37 +00:00
AzuraCast/src/Radio/Enums/StreamProtocols.php

13 lines
166 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace App\Radio\Enums;
enum StreamProtocols: string
{
case Icy = 'icy';
case Http = 'http';
case Https = 'https';
}