1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
//! Server mode for vecstore //! //! Provides gRPC and HTTP/REST APIs for remote access to vecstore. #[cfg(feature = "server")] pub mod admin; #[cfg(feature = "server")] pub mod admin_http; #[cfg(feature = "server")] pub mod grpc; #[cfg(feature = "server")] pub mod http; #[cfg(feature = "server")] pub mod types; #[cfg(feature = "server")] pub mod metrics; #[cfg(feature = "server")] pub use admin::AdminService; #[cfg(feature = "server")] pub use admin_http::AdminHttpServer; #[cfg(feature = "server")] pub use grpc::VecStoreGrpcServer; #[cfg(feature = "server")] pub use http::VecStoreHttpServer;