ncm_api 0.1.3

网易云音乐API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[tokio::test]
async fn test_daily_sign(){
    let res = match ncm_api::user::daily_sign().await {
        Ok(_) => true,
        Err(_) => false,
    };
    assert_eq!(res, true);
}


#[tokio::test]
async fn get_account_info(){
    let res = match ncm_api::user::get_account_info().await {
        Ok(_) => true,
        Err(_) => false,
    };
    assert_eq!(res, true);
}