started the facelift of the repo, adding in bans and timeouts. That comes with some restructure. Also implementing a goroutine limit for command handlers and options around that, as well as moving the intents to options to allow stronger restrictions
18 lines
599 B
Go
18 lines
599 B
Go
package bolt
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// custom Discord commands
|
|
type Command struct {
|
|
Trigger string //command that triggers payload NOT including the indicator
|
|
Payload Payload //payload function to run when a command is detected
|
|
Timeout time.Duration //the amount of time before command can be run again
|
|
lastRun time.Time //timestamp of last command run
|
|
Roles []string //roles that can use command, if none are set anyone can run the command
|
|
}
|
|
|
|
// command payload functions, any strings returned are sent as a response to the command
|
|
type Payload func(msg *Message) error
|