Files
desktop/app/servers.ts
RoyceDa 779c265851
All checks were successful
SP Builds / build (push) Successful in 4m25s
Поднятие версии, outline
2026-04-04 18:34:18 +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];
}