Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create nim.mdx #24

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions docs/sdk/nim.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: boticordnim
description: Utility for interaction with Boticord API on Nim
slug: /sdk/nim
---

Utility for interaction with Boticord API on Nim.

[GitHub repo](https://github.com/bit0r1n/boticordnim)
[Docs](https://bit0r1n.github.io/boticordnim/)

# Installation

Enter this command to install package

```
nimble install https://github.com/bit0r1n/boticordnim
```

# Examples
Get info from some resources:

```nim
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](https://github.com/boticord/boticordnim/tree/master/examples).

## Need help?

If you need any help, you can create an issue in [SDK's repository](https://github.com/boticord/boticordnim/issues).

Library developer: [`bit0r1n`](https://boticord.top/profile/267729391172321290)
Loading