Add prefix commands

This commit is contained in:
Dustin Pianalto
2021-01-24 00:24:07 -09:00
parent 454cced2a7
commit 081b21d58c
4 changed files with 119 additions and 0 deletions
+3
View File
@@ -2,6 +2,7 @@ package exts
import (
"github.com/dustinpianalto/disgoman"
"github.com/dustinpianalto/geeksbot/internal/exts/guild"
"github.com/dustinpianalto/geeksbot/internal/exts/utils"
)
@@ -20,4 +21,6 @@ func AddCommandHandlers(g *disgoman.CommandManager) {
_ = g.AddCommand(utils.GitCommand)
_ = g.AddCommand(utils.InviteCommand)
_ = g.AddCommand(utils.PingCommand)
_ = g.AddCommand(guild.AddPrefixCommand)
_ = g.AddCommand(guild.RemovePrefixCommand)
}