discord-rs

discord-rs is a blazingly fast library for interacting with the Discord API. It provides a simple and efficient way to build Discord bots, create rich embeds, send messages, manage channels, and more.

Features

Getting Started

Installation

You can add discord-rs as a dependency in your Cargo.toml file:

toml [dependencies] discord-rs = "0.1.0"

Usage

Here's a simple example of how to use discord-rs to send a message:

```rust use discord-rs::{Client, Context, EventHandler};

struct MyHandler;

impl EventHandler for MyHandler { fn onmessage(&self, ctx: &Context, message: &Message) { if message.content == "!hello" { ctx.sendmessage(message.channel_id, "Hello, Discord!").unwrap(); } } }

fn main() { let token = "YOURDISCORDTOKEN"; let client = Client::new(token, MyHandler); client.start().expect("Failed to start the client."); } ```

Make sure to replace YOURDISCORDTOKEN with your actual Discord bot token.

Documentation

For detailed usage instructions, examples, and API reference, please refer to the Documentation

Contributing

Contributions are welcome! If you find any bugs, have suggestions, or would like to contribute to the project, please check out our [Contributing Guidelines].

License

This project is licensed under the Apache License 2.0.