wallhaven_rs/
lib.rs

1#![allow(clippy::multiple_crate_versions)]
2
3//! # wallhaven-rs
4//!
5//! `wallhaven-rs` is a wallhaven api wrapper.
6//!
7//! The entry point of everything is [`WallhavenClient`].
8
9mod client;
10mod models;
11
12pub use client::*;
13/// We export as a dependant may need Mime for type matching and not want to include it himself
14pub use mime;
15pub use models::*;