delete get/list/list_by_owner channels, get_settings/activity_log admin, get_item/get_sync_status/list_collections/list_seasons/list_shows/list_genres library, get/list/delete providers, get/list/patch_label config_snapshots, get_active/list_history/delete_after schedule — all single-delegation. remove ChannelQueryDeps, LibraryQueryDeps, deleted query/command structs. add direct port fields to AppState. update MCP crate accordingly.
14 lines
197 B
Rust
14 lines
197 B
Rust
use uuid::Uuid;
|
|
|
|
pub struct GetCurrentBroadcastQuery {
|
|
pub channel_id: Uuid,
|
|
}
|
|
|
|
pub struct GetEpgQuery {
|
|
pub channel_id: Uuid,
|
|
}
|
|
|
|
pub struct GetStreamUrlQuery {
|
|
pub channel_id: Uuid,
|
|
}
|