mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-16 12:40:36 +00:00
This is a refactor to create better abstractions related to our management server. It cleans up the code, and prepares everything for authorized communication to and from the control plane. Signed-off-by: Tristan Partin <tristan@neon.tech>
8 lines
148 B
Rust
8 lines
148 B
Rust
pub(crate) mod json;
|
|
pub(crate) mod path;
|
|
pub(crate) mod query;
|
|
|
|
pub(crate) use json::Json;
|
|
pub(crate) use path::Path;
|
|
pub(crate) use query::Query;
|