1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 12:11:42 +00:00
catbase/bot/msg/message.go
Chris Sexton e449a82001 YOLO: DEAL WITH IT
Refactored a bunch of junk.
2016-04-01 10:20:26 -04:00

23 lines
382 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 {
User *user.User
Channel, Body string
Raw string
Command bool
Action bool
Time time.Time
Host string
}