export function createWebSocket() { let appUrl = Bun.env.APP_URL; appUrl = `//${appUrl}/chat-service`; return new WebSocket(appUrl); }