Skip to content

A framework that makes the process of creating Discord bots with Discord.Net easier and more streamlined.

Notifications You must be signed in to change notification settings

Reyth3/Discord.Net.Framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Discord.Net.Framework

This is a framework for easily creating Discord bots with minimal amount of effort. All boilerplate code already in place plus some more advanced features allow for quick implementation of needed features instead of focusing on setting up the basics.

Getting Started

To set the framework up, simply wire it up with dependency injection like so:

var host = Host.CreateDefaultBuilder()
    .ConfigureServices((context, services) =>
    {
        services.WireUpDiscordFramework("a!"); // command prefix
    })
    .UseSerilog()
    .Build();

Then in appsettings.json add your Discord bot token and inject DiscordBotFramework into your service.

About

A framework that makes the process of creating Discord bots with Discord.Net easier and more streamlined.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages