litchee 0.1.5

Async, builder-pattern Rust client for the Lichess API: full endpoint coverage, NDJSON streaming, and OAuth2 PKCE ('Log in with Lichess').
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The Lichess API, organized by business concern.
//!
//! Each submodule groups related concerns into a category; every concern
//! exposes its endpoints through an accessor on
//! [`LichessClient`](crate::LichessClient) (for example `client.account()` or
//! `client.broadcasts()`).

pub mod auth;
pub mod broadcasting;
pub mod database;
pub mod engine;
pub mod gameplay;
pub mod social;
pub mod tournaments;
pub mod training;
pub mod users;