mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
8ed01ed4da
First pass at the emoji picker
7 lines
176 B
Go
7 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"`
|
|
}
|