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