Files
desktop/app/servers.ts
RoyceDa 3492a881cc
All checks were successful
SP Builds / build (push) Successful in 3m36s
Поднятие версии
2026-04-02 18:31:46 +02:00

11 lines
283 B
TypeScript

export const SERVERS = [
//'wss://cdn.rosetta-im.com',
//'ws://10.211.55.2:3000',
//'ws://192.168.6.82:3000',
'wss://wss.rosetta.im'
];
export function selectServer(): string {
const idx = Math.floor(Math.random() * SERVERS.length);
return SERVERS[idx];
}