0
owncast/models/emoji.go
Gabe Kangas 8ed01ed4da
../
First pass at the emoji picker
2022-05-26 18:59:16 -07:00

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"`
}