An open API service indexing awesome lists of open source software.

https://github.com/velocitatem/daviddiscordbot


https://github.com/velocitatem/daviddiscordbot

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# DavidDiscordBot

## How to add commands
1. create new class that extends IModule
`
public class myCommands : IMoule
`

2. creat custom command

```
[Command("your command")]
[Description("about your command")]
public async Task Command(CommandContext ctx) {
await ctx.RespondAsync("Hey");
}
```