mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
20 lines
577 B
Rust
20 lines
577 B
Rust
use futures::StreamExt;
|
|
use librespot_core::SessionConfig;
|
|
use librespot_discovery::DeviceType;
|
|
use sha1::{Digest, Sha1};
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
|
async fn main() {
|
|
let name = "Librespot";
|
|
let device_id = hex::encode(Sha1::digest(name.as_bytes()));
|
|
|
|
let mut server = librespot_discovery::Discovery::builder(device_id, SessionConfig::default().client_id)
|
|
.name(name)
|
|
.device_type(DeviceType::Computer)
|
|
.launch()
|
|
.unwrap();
|
|
|
|
while let Some(x) = server.next().await {
|
|
println!("Received {:?}", x);
|
|
}
|
|
}
|