Discord webhook helpers
- Nim 100%
| src | ||
| discordhook.nimble | ||
| LICENSE | ||
| nimble.lock | ||
| README.org | ||
README
Discord Hooks
This is a simple library for sending webhooks to a discord server.
usage
Here is an example creating a webook
import discordhook
# Create the webhook
let hook = Webhook(content: "Hello world!", url: "webhook url")
# Send it
hook.send()