osynic_osuapi 0.1.11

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README_EN.md")]

#[cfg(feature = "v1")]
pub mod v1;
#[cfg(feature = "v2")]
pub mod v2;

#[cfg(all(feature = "v1", feature = "v2", feature = "wasm", feature = "export"))]
pub mod wasm;

pub mod error;
pub mod utils;

pub mod prelude;