mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
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"`
|
|
}
|