#[tokio::main]
async fn main() {
tracing_subscriber::fmt::init();
let mut client = Client::connect(["localhost:2379"], None).await.unwrap();
let mut f = Queue::new(client, "test2".to_string(), None).await.unwrap();
f.send("testing message").await;
let msg = f.try_recv().await;
println!("{:?}", msg);
sleep(Duration::from_secs(5)).await;
}