//! A Rust wrapper for the official Fantasy Premier League (FPL) API.
//!
//! Provides typed structs for all API responses and an async client for fetching data.
//!
//! # Terminology
//! The FPL API uses some non-obvious naming conventions:
//! - **entry** / **manager** — an FPL player (the person managing a squad)
//! - **element** — a football player
//! - **event** — a gameweek
//!
//! All structs are documented to the best of my knowledge, which means there could be mistakes
pub use BootstrapStatic;
pub use Fixture;
pub use LeagueStandings;
pub use LiveEvent;
pub use Manager;
pub use ManagerHistory;
pub use ManagerPicks;
pub use EventStatus;