#[tokio::test] async fn test_get_collections() { async fn get_collections() -> Result<(), Box> { // WARNING: This is a generated test snippet. // Please, modify the snippet in the `../snippets/get_collections.rs` file use qdrant_client::Qdrant; let client = Qdrant::from_url("http://localhost:6334").build()?; client.list_collections().await?; Ok(()) } let _ = get_collections().await; }