feat: add ChannelRss
- add documentation - small model refactor: rename player VideoPlayerDetails.thumbnails to thumbnail
This commit is contained in:
parent
6ac5bc3782
commit
305c3ee70e
29 changed files with 2222 additions and 118 deletions
|
|
@ -1,7 +1,6 @@
|
|||
use std::convert::TryFrom;
|
||||
|
||||
use anyhow::{anyhow, bail, Result};
|
||||
use reqwest::Method;
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::{
|
||||
|
|
@ -34,7 +33,6 @@ impl RustyPipeQuery {
|
|||
ClientType::Desktop,
|
||||
"playlist",
|
||||
playlist_id,
|
||||
Method::POST,
|
||||
"browse",
|
||||
&request_body,
|
||||
)
|
||||
|
|
@ -52,7 +50,6 @@ impl RustyPipeQuery {
|
|||
ClientType::Desktop,
|
||||
"get_playlist_continuation",
|
||||
ctoken,
|
||||
Method::POST,
|
||||
"browse",
|
||||
&request_body,
|
||||
)
|
||||
|
|
|
|||
Reference in a new issue