pokemon_tcg_api_client/lib.rs
1//! Api client crate for querying the <https://pokemontcg.io/> API.
2//!
3//! Provides an abstraction over the api requests.
4//! Can either query by id or resources a bit more specific.
5//!
6//! Features:
7//! - Central api client
8//! - Methods for all api paths
9//! - Query builders for the advanced querying of data
10//! - Pokemon cards
11//! - Sets
12//! - Trainer cards
13//! - Energies
14pub mod builder;
15pub mod pokemon_api_client;
16pub mod resource;