moth/pkg/microchat/message.go

11 lines
226 B
Go
Raw Normal View History

2022-05-10 13:20:54 -06:00
package main
// Message contains everything sent to the client about a single message
type Message struct {
// User is the full ID of the user sending this message
User string
// Text is the message itself
Text string
}