1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pub use http;
pub use serde;
pub use serde_json;
pub use url;

pub mod types;

pub mod lyric;
pub mod search;
pub mod song;
pub mod user;

pub use types::SongId;

mod config;

pub use config::QQMusicApi;

pub type GETResult = http::Result<http::Request<()>>;
pub type POSTResult = http::Result<http::Request<String>>;