mirror of
https://github.com/glimpse-app/server.git
synced 2025-04-02 10:52:45 -04:00
10 lines
285 B
Nim
10 lines
285 B
Nim
template H*(s: string): untyped =
|
|
$request.headers[s]
|
|
|
|
template reqInfo*: string =
|
|
$request.reqMethod & " " & request.host & request.path & " " & request.ip &
|
|
" " & $request.headers["user-agent"]
|
|
|
|
template respErr*(s: string): untyped =
|
|
error s & reqInfo
|
|
resp Http403, s
|