ncmapi 1.0.0

NetEase Cloud Music API for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Typed endpoint APIs grouped by domain.
//!
//! Each service owns a focused part of the NetEase protocol surface.

mod discovery;
mod library;
mod profile;

pub use discovery::{Discovery, SearchKind, SearchQuery};
pub use library::Library;
pub use profile::Profile;