7 lines
187 B
Nim
7 lines
187 B
Nim
import asynchttpserver, asyncdispatch
|
|
|
|
proc cb(req: Request) {.async.} =
|
|
await req.respond(Http200, "Hello, World!")
|
|
|
|
asyncCheck newAsyncHttpServer().serve(Port(8080), cb)
|
|
runForever()
|