all repos — wsabi @ 776001e3508e0ffdb0049678c4da33609cbf8943

websocket proxy that sends stats to statsd

src/wsabipkg/httputils.nim (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
import asynchttpserver, asyncdispatch

proc makeResponse*(
  req: Request, code: HttpCode, content: string
) {.async.} =
  await req.respond(
    code, content,
    newHttpHeaders([("Content-Type", "application/json")])
  )