ouichat/core/message.go
2020-05-13 21:52:06 -05:00

11 lines
160 B
Go

package core
import "time"
type Message struct {
Time time.Time `json:"time"`
MessageID string
Author string
AuthorID string
Contents string
}