all repos — wsabi @ d351f6e665f889ccc51c7dc808734c44e1f296a3

websocket proxy that sends stats to statsd

src/wsabi/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")])
  )