Basic chat persistence for #26

This commit is contained in:
Gabe Kangas
2020-07-12 14:53:33 -07:00
parent a55878ff22
commit 8cedf05214
7 changed files with 124 additions and 7 deletions

View File

@@ -11,6 +11,7 @@ type ChatMessage struct {
Image string `json:"image"`
ID string `json:"id"`
MessageType string `json:"type"`
Visible bool `json:"visible"`
Timestamp time.Time `json:"timestamp"`
}