feat: add ChannelRss

- add documentation
- small model refactor: rename player VideoPlayerDetails.thumbnails to thumbnail
This commit is contained in:
ThetaDev 2022-09-27 15:23:09 +02:00
parent 6ac5bc3782
commit 305c3ee70e
29 changed files with 2222 additions and 118 deletions

View file

@ -1,7 +1,6 @@
use std::convert::TryFrom;
use anyhow::{anyhow, bail, Result};
use reqwest::Method;
use serde::Serialize;
use crate::{
@ -44,7 +43,6 @@ impl RustyPipeQuery {
ClientType::Desktop,
"video_details",
video_id,
Method::POST,
"next",
&request_body,
)
@ -62,7 +60,6 @@ impl RustyPipeQuery {
ClientType::Desktop,
"video_recommendations",
ctoken,
Method::POST,
"next",
&request_body,
)
@ -80,7 +77,6 @@ impl RustyPipeQuery {
ClientType::Desktop,
"video_comments",
ctoken,
Method::POST,
"next",
&request_body,
)