mirror of
https://github.com/velour/catbase.git
synced 2025-04-03 19:51:42 +00:00
- factoid is a mess, but I at least split it into a few parts - need to move config values from factoid to fact - need to rename the whole thing to fact - probably need to go over it with a fine toothed comb - 5 seconds, why 5 seconds? I still don't know - added kind to the message type so we can filter reactions out
31 lines
598 B
Go
31 lines
598 B
Go
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
|
|
|
package msg
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/velour/catbase/bot/user"
|
|
)
|
|
|
|
type Log Messages
|
|
type Messages []Message
|
|
|
|
type Message struct {
|
|
ID string
|
|
Kind int
|
|
User *user.User
|
|
// With Slack, channel is the ID of a channel
|
|
Channel string
|
|
// With slack, channelName is the nice name of a channel
|
|
ChannelName string
|
|
Body string
|
|
IsIM bool
|
|
Raw any
|
|
Command bool
|
|
Action bool
|
|
Time time.Time
|
|
Host string
|
|
AdditionalData map[string]string
|
|
}
|