tetrio_api/
lib.rs

1
2
3/// The module which actually lets you interact with the TETR.IO api
4/// You will find in here both a classic HTTP client which does not manage the cache 
5/// and a HTTP client which stores the API responses in an in memory cache automatically
6/// You should always prefer using the cached http client to make sure to not spam the API.
7pub mod http;
8
9/// The models used by this crate
10/// You will be able to find any models returned by API functions here
11/// There might be some innacuracies compared to the models in the [TETR.IO API Specs](https://tetr.io/about/api/)
12pub mod models;
13
14