mirror of
https://github.com/status-im/nim-websock.git
synced 2025-02-27 00:30:30 +00:00
9 lines
194 B
Nim
9 lines
194 B
Nim
import ../ws, chronos, asynchttpserver
|
|
|
|
proc cb(req: Request) {.async.} =
|
|
var ws = await newWebSocket(req)
|
|
ws.close()
|
|
|
|
var server = newAsyncHttpServer()
|
|
waitFor server.serve(Port(9001), cb)
|