faceit 0.1.0

A Rust client library for the FACEIT Public API
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod championship;
mod game;
mod hub;
mod r#match;
mod player;

pub use championship::Championship;
pub use game::Game;
pub use hub::Hub;
pub use r#match::Match;
pub use player::Player;