shuller 1.0.2

Lib to get links to images for your favourite tags on rule34 and any
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(test)]
mod tests {
    use shuller::prelude::*; // Импортируйте нужные модули

    #[tokio::test]
    async fn test_of_work() {
        let instance: Posts = Params::init()
            .positive_tags(vec!["dark"])
            .negative_tags(vec!["ai_generated"])
            .limit(3)
            .make_link()
            .search()
            .await
            .unwrap();
        println!("{:#?}", instance.get_s_urls())
    }
}