Skip to main content

boticordnim

Utility for interaction with Boticord API on Nim.

GitHub repo Docs

Installation

Enter this command to install package

nimble install https://github.com/boticord/boticordnim

Examples

Get info from some resources:

import boticordnim/[bots, users, servers]
import asyncdispatch, strformat

let
botId = "974297735559806986"
bot = waitFor getBot(botId) # or getBot(id = botId)

serverId = "992158889116180502"
server = waitFor getServer(serverId)

userId = "267729391172321290"
user = waitFor getUser(userId)

echo fmt"Name of {botId} resource (bots): {bot.name}"
echo fmt"Name of {serverId} resource (servers): {server.name}"
echo fmt"Name of {userId} resource (users): {user.username}"

Other examples are located in SDK's repository.

Need help?

If you need any help, you can create an issue in SDK's repository.

Library developer: bit0r1n