shuller 1.0.2

Lib to get links to images for your favourite tags on rule34 and any
Documentation
# Shuller


This is LIB for fetching links from Rule34 and other sites which you can implemented

## Example usage


```rust
async fn example() {
      use shuller::prelude::*;

      let instance: Posts = Params::init()
           .positive_tags(vec!["dark", ":)"])
           .negative_tags(vec!["ai_generated", "light"])
           .limit(3)
           .make_link()
           .search()
           .await
           .unwrap(); // or handle error
       println!("{:#?}", instance.get_s_urls())
    }
```

## Example usage with id


```rust
async fn example() {
      use shuller::prelude::*;

      let instance: Posts = Params::init()
           .id(10542274)
           .make_link()
           .search()
           .await
           .unwrap(); // or handle error
       println!("{:#?}", instance.get_s_urls())
    }
```