neumann_server 0.4.0

gRPC server exposing Neumann database via QueryRouter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT OR Apache-2.0
//! gRPC service implementations.

pub mod blob;
pub mod collections;
pub mod health;
pub mod points;
pub mod query;

pub use blob::BlobServiceImpl;
pub use collections::CollectionsServiceImpl;
pub use health::{HealthServiceImpl, HealthState};
pub use points::PointsServiceImpl;
pub use query::QueryServiceImpl;