Files
AynaLivePlayer/core/events/search.go
2025-10-06 23:52:10 +08:00

19 lines
280 B
Go

package events
import (
"AynaLivePlayer/core/model"
)
const CmdMiaosicSearch = "cmd.search"
type CmdMiaosicSearchData struct {
Keyword string
Provider string
}
const ReplyMiaosicSearch = "update.search_result"
type ReplyMiaosicSearchData struct {
Medias []model.Media
}