resource/app/Services/TomTool/Map.php
2026-01-21 19:53:48 +08:00

27 lines
442 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\Services\TomTool;
class Map
{
public static function fnClientToSfx($sClient)
{
$sfx = "";
switch ($sClient) {
case "clash":
$sfx = "yaml";
break;
case "v2ray":
$sfx = "txt";
break;
default:
break;
}
return $sfx;
}
}