aboutsummaryrefslogtreecommitdiff
path: root/internal/chat/message.go
blob: 081d640f285f5956df6246786efe1219d1b65f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package chat

import (
	"time"
)

type SystemMessage struct {
	Message string
}

type Message struct {
	User    *User
	Time    time.Time
	Message string
}

type SelfMessage struct {
	User    *User
	Message string
}