mirror of
https://github.com/logos-storage/nim-websock.git
synced 2026-01-07 16:13:08 +00:00
8 lines
178 B
Nim
8 lines
178 B
Nim
import ws, nativesockets, chronos
|
|
|
|
discard waitFor newAsyncWebsocketClient("localhost", Port(8080), path = "/", protocols = @["myfancyprotocol"])
|
|
echo "connected"
|
|
|
|
runForever()
|
|
|