github-pachong/app/Services/TomTool/Map.php
hellcat c69d35d1bb 1
2026-01-10 16:40:33 +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;
}
}