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