CookieMod/cmds.go

13 lines
159 B
Go
Raw Normal View History

2023-12-01 22:40:08 +01:00
package main
2023-12-02 04:26:02 +01:00
import "github.com/bwmarrin/discordgo"
type Command struct {
Name string
Action func(message discordgo.Message)
}
var (
botPrefix = "!"
)