mirror of https://github.com/dirtbags/moth.git
11 lines
226 B
Go
11 lines
226 B
Go
|
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
|
||
|
}
|