mirror of
https://github.com/codex-storage/nim-websock.git
synced 2025-02-13 10:56:37 +00:00
8 lines
177 B
Nim
8 lines
177 B
Nim
import ws, chronos
|
|
|
|
when isMainModule:
|
|
let address = "127.0.0.1:8888"
|
|
var httpServer = newHttpServer(address)
|
|
httpServer.server.start()
|
|
waitFor httpServer.server.join()
|