mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-11 12:48:12 +08:00
19 lines
268 B
Go
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
|
|
}
|