Spaces:
Build error
Build error
File size: 533 Bytes
84d2a97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
pub mod conversions;
#[allow(clippy::all)]
#[rustfmt::skip] // tonic uses `prettyplease` to format its output
pub mod qdrant;
pub mod dynamic_channel_pool;
pub mod dynamic_pool;
#[rustfmt::skip] // tonic uses `prettyplease` to format its output
#[path = "grpc.health.v1.rs"]
pub mod grpc_health_v1;
pub mod transport_channel_pool;
pub mod validate;
pub const fn api_crate_version() -> &'static str {
env!("CARGO_PKG_VERSION")
}
pub const QDRANT_DESCRIPTOR_SET: &[u8] = tonic::include_file_descriptor_set!("qdrant_descriptor");
|