mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-07 03:56:55 +03:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
export function getClashWsUrl(): string {
|
|
const { hostname } = window.location;
|
|
|
|
return `ws://${hostname}:9090`;
|
|
}
|
|
|
|
export function getClashUIUrl(): string {
|
|
const { hostname } = window.location;
|
|
|
|
return `http://${hostname}:9090/ui`;
|
|
}
|