8ed01ed4da
First pass at the emoji picker
8 lines
176 B
Go
8 lines
176 B
Go
package models
|
|
|
|
// CustomEmoji represents an image that can be used in chat as a custom emoji.
|
|
type CustomEmoji struct {
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
}
|