use crate::client::RequestConfig;
use super::DouyinFetcher;
pub type BoundDouyinFetcher = DouyinFetcher;
#[doc(alias = "createBoundDouyinFetcher")]
pub fn create_bound_douyin_fetcher(
cookie: impl Into<String>,
request: Option<RequestConfig>,
) -> BoundDouyinFetcher {
DouyinFetcher::from_cookie(cookie, request.unwrap_or_default())
}