rust_anilist/lib.rs
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2022-2025 Andriel Ferreira <https://github.com/AndrielFR>
3
4//! This crate provides a Rust library for interacting with the AniList API.
5
6#![deny(missing_docs)]
7
8mod client;
9mod error;
10pub mod models;
11
12pub use client::Client;
13pub use error::{Error, Result};