mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-20 22:50:38 +00:00
20 lines
562 B
Rust
20 lines
562 B
Rust
//! This crate provides the Pageserver's page API. It contains:
|
|
//!
|
|
//! * proto: auto-generated Protobuf types for gRPC.
|
|
//! * model: canonical domain types. Protobuf types are converted into these.
|
|
//!
|
|
//! See `proto/page_service.proto` for the protocol spec.
|
|
//!
|
|
//! This crate is used by both the client and the server. Try to keep it slim.
|
|
//!
|
|
|
|
pub mod model;
|
|
|
|
// Code generated by protobuf.
|
|
pub mod proto {
|
|
tonic::include_proto!("page_service");
|
|
|
|
pub use page_service_client::PageServiceClient;
|
|
pub use page_service_server::PageServiceServer;
|
|
}
|