dirtboll

Results 2 issues of dirtboll

This adds the ability to provide Discord notification template using JSON via `discord_message_template` environment variable. Example inside a bash script: ```bash set -a discord_webhook=https://discord.com/api/webhooks/blablabla # Generated from https://discohook.org/ read -r...

This minimal code should reproduce the issue. ```nim # hello.nim import options, asyncdispatch, logging import httpbeast proc onRequest(req: Request): Future[void] = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send("Hello...