pixiv_api/
lib.rs

1// #![deny(missing_debug_implementations, missing_copy_implementations)]
2// #![warn(missing_docs, rustdoc::missing_crate_level_docs)]
3#![doc = include_str!("../readme.md")]
4#![doc(
5    html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg"
6)]
7#![doc(
8    html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg"
9)]
10
11mod errors;
12pub mod artworks;
13
14pub use crate::errors::{ExampleErrorKind, Result, PixivError};
15
16pub use crate::artworks::{images::{PixivImage, PixivImageUrls}};