First pass at the emoji picker
This commit is contained in:
Gabe Kangas
2022-05-26 18:59:16 -07:00
parent 1d213b71d4
commit 8ed01ed4da
7 changed files with 80 additions and 47 deletions

View File

@@ -2,6 +2,6 @@ package models
// CustomEmoji represents an image that can be used in chat as a custom emoji.
type CustomEmoji struct {
Name string `json:"name"`
Emoji string `json:"emoji"`
Name string `json:"name"`
URL string `json:"url"`
}