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