Hey there, I'm learning Nim for few days now and now I'm digging through HTTP and async things.
Is there a way to send back a file as a response in the code like this:
proc handleRequest(req: Request) {.async.} =
await req.respond(Http200, "Hi there")
asyncCheck newAsyncHttpServer().serve(Port 8080, handleRequest)
runForever()