Files
AynaLivePlayer/core/events/search.go
aynakeya fd872c1f5b update
2024-04-13 00:59:44 -07:00

19 lines
268 B
Go

package events
import (
"AynaLivePlayer/core/model"
)
const SearchCmd = "cmd.search"
type SearchCmdEvent struct {
Keyword string
Provider string
}
const SearchResultUpdate = "update.search_result"
type SearchResultUpdateEvent struct {
Medias []model.Media
}