blob: 29fb903a45587d7a255a3db11ffda91825fe0b32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
discard """
action: "compile"
"""
import std/[asynchttpserver, asyncdispatch]
import std/[strformat]
proc main() =
let local = "123"
proc serveIndex(req: Request) {.async, gcsafe.} =
await req.respond(Http200, &"{local}")
proc serve404(req: Request) {.async, gcsafe.} =
echo req.url.path
await req.respond(Http404, "not found")
proc serve(req: Request) {.async, gcsafe.} =
let handler = case req.url.path:
of "/":
serveIndex
else:
serve404
await handler(req)
let server = newAsyncHttpServer()
waitFor server.serve(Port(8080), serve, address = "127.0.0.1")
when isMainModule:
main()
|