ncm_api 0.1.3

网易云音乐API
Documentation
1
2
3
4
5
6
7
8
#[tokio::test]
async fn test_get_user_playlist(){
    let res = match ncm_api::playlist::get_user_playlist("32423432", 10, 0).await {
        Ok(_) => true,
        Err(_) => false,
    };
    assert_eq!(res, true);
}