1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![recursion_limit = "256"]
#![doc = include_str!("../README.md")]

pub mod berries;
pub mod contests;
pub mod encounters;
pub mod evolution;
pub mod games;
pub mod items;
pub mod locations;
pub mod machines;
pub mod moves;
pub mod pokemon;
pub mod utility;

pub mod client;
pub mod error;

mod endpoint;
pub(crate) use endpoint::endpoint;

pub mod model;