leetify 0.1.1

A Rust client library for the Leetify Public CS API
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod client;
pub mod error;
#[cfg(feature = "player")]
pub mod player;
pub mod types;

pub use client::{Client, ClientBuilder};
pub use error::Error;
#[cfg(feature = "player")]
pub use player::Player;
pub use types::{DataSource, Id, LeetifyId, Steam64Id, *};