owncast/message.go

13 lines
240 B
Go
Raw Normal View History

2020-05-24 02:57:49 +02:00
package main
type Message struct {
Author string `json:"author"`
Body string `json:"body"`
2020-06-02 08:50:32 +02:00
Image string `json:"image"`
Id string `json:"id"`
2020-05-24 02:57:49 +02:00
}
func (self *Message) String() string {
return self.Author + " says " + self.Body
}