val client = HttpClient(CIO) {
install(WebSockets)
}
val session = client.webSocketSession("<wss://ws.postman-echo.com/raw/>")
// Do something with the session
session.send(Frame.Text("hello"))
session.close()
val session2 = client.webSocketSession("<wss://ws.postman-echo.com/raw/>")