discord-flauschbot/types.go

21 lines
318 B
Go
Raw Normal View History

2018-06-03 10:40:28 +02:00
package main
type CommandType int
const (
CommandTypePrefix CommandType = 0
CommandTypeFullMatch CommandType = 1
CommandTypeRegex CommandType = 2
)
type Command struct {
Input string
Output string
Type CommandType
OutputIsReply bool
DeleteInput bool
DMOnly bool
}