mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
11 lines
213 B
Go
11 lines
213 B
Go
package main
|
|
|
|
type Message struct {
|
|
Author string `json:"author"`
|
|
Body string `json:"body"`
|
|
Image string `json:"image"`
|
|
}
|
|
|
|
func (self *Message) String() string {
|
|
return self.Author + " says " + self.Body
|
|
}
|