1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-05 02:39:53 +02:00

Move ConnectConfig to connect

This commit is contained in:
Roderick van Domburg 2022-01-05 21:15:19 +01:00
parent 1a7c440bd7
commit cc9a574b2e
No known key found for this signature in database
GPG key ID: A9EF5222A26F0451
12 changed files with 137 additions and 175 deletions

View file

@ -27,8 +27,9 @@ use tokio::sync::{mpsc, oneshot};
use super::DiscoveryError;
use crate::core::{
authentication::Credentials, config::DeviceType, diffie_hellman::DhLocalKeys, Error,
use crate::{
connect::config::DeviceType,
core::{authentication::Credentials, diffie_hellman::DhLocalKeys, Error},
};
type Params<'a> = BTreeMap<Cow<'a, str>, Cow<'a, str>>;