mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 19:32:20 +08: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"`
|
|
}
|