Files
desktop/app/servers.ts
rosetta 83f38dc63f 'init'
2026-01-30 05:01:05 +02:00

9 lines
218 B
TypeScript

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