rtkd 0.1.0

A minimalistic library for downloading TikTok videos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;
use std::collections::HashMap;

#[derive(Debug, Deserialize)]
pub struct HttpConfig {
    pub headers: HashMap<String, String>,
    pub cookie: String,
    pub chunk_size: usize,
    pub output_dir: String,
}

#[derive(Debug, Deserialize)]
pub struct Config {
    pub http: HttpConfig,
}