1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! # 歌单相关接口
use Method;
use ;
use crate;
/// 获取某用户歌单
/// ## 参数:
/// - uid: 用户ID
/// - limit: 取多少条数据
/// - offset: 跳过多少条数据
/// ### 示例:
/// ```
/// ncm_api::playlist::get_user_playlist("1", 100, 0).await?;
/// ```
pub async