add request command

This commit is contained in:
Dustin Pianalto
2021-01-25 01:21:49 -09:00
parent 22fd99c673
commit 588117e0d0
2 changed files with 42 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ package exts
import (
"github.com/dustinpianalto/disgoman"
"github.com/dustinpianalto/geeksbot/internal/exts/guild"
"github.com/dustinpianalto/geeksbot/internal/exts/requests"
"github.com/dustinpianalto/geeksbot/internal/exts/utils"
)
@@ -23,4 +24,5 @@ func AddCommandHandlers(g *disgoman.CommandManager) {
_ = g.AddCommand(utils.PingCommand)
_ = g.AddCommand(guild.AddPrefixCommand)
_ = g.AddCommand(guild.RemovePrefixCommand)
_ = g.AddCommand(requests.RequestCommand)
}