mirror of
https://github.com/logos-storage/nim-websock.git
synced 2026-01-04 22:53:13 +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)
|