mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-04 02:09:26 +02:00
Change panics into Result<_, librespot_core::Error>
This commit is contained in:
parent
a297c68913
commit
62461be1fc
69 changed files with 2041 additions and 1331 deletions
|
@ -1,8 +1,11 @@
|
|||
use std::io;
|
||||
|
||||
use aes_ctr::cipher::generic_array::GenericArray;
|
||||
use aes_ctr::cipher::{NewStreamCipher, SyncStreamCipher, SyncStreamCipherSeek};
|
||||
use aes_ctr::Aes128Ctr;
|
||||
use aes_ctr::{
|
||||
cipher::{
|
||||
generic_array::GenericArray, NewStreamCipher, SyncStreamCipher, SyncStreamCipherSeek,
|
||||
},
|
||||
Aes128Ctr,
|
||||
};
|
||||
|
||||
use librespot_core::audio_key::AudioKey;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue