quahu.github.io Open in urlscan Pro
2606:50c0:8003::153  Public Scan

Submitted URL: https://discatsharp.net/
Effective URL: https://quahu.github.io/Disqord/
Submission: On July 25 via api from BE — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

Disqord
 * Tutorials

 * GitHub
 * Discord


THE .NET DISCORD API WRAPPER YOU DESERVE

Disqord aims to be the easiest to start with and most enjoyable to master
Discord API wrapper for .NET.

The library prioritizes user experience and public API design. Discord's unhandy
JSON models are mapped to straightforward and consistent polymorphic entities.

Get Started

SHORTEST PING-PONG BOT EXAMPLE

Typing @YourBot ping will make your bot respond with Pong!.

using Disqord.Bot;
using Disqord.Bot.Hosting;
using Microsoft.Extensions.Hosting;
using Qmmands;

await new HostBuilder()
    .ConfigureDiscordBot((context, bot) => bot.Token = "YOUR_TOKEN_HERE")
    .RunConsoleAsync();

public class ExampleModule : DiscordModuleBase
{
    [Command("ping")]
    public DiscordCommandResult Ping()
        => Response("Pong!");
}



© 2021 • Quahu