mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 16:32:56 +00:00
This is the first step towards representing all of Pageserver configuration as clean `serde::Serialize`able Rust structs in `pageserver_api`. The `neon_local` code will then use those structs instead of the crude `toml_edit` / string concatenation that it does today. refs https://github.com/neondatabase/neon/issues/7555 --------- Co-authored-by: Alex Chi Z <iskyzh@gmail.com>
14 lines
228 B
Rust
14 lines
228 B
Rust
#![deny(unsafe_code)]
|
|
#![deny(clippy::undocumented_unsafe_blocks)]
|
|
|
|
pub mod controller_api;
|
|
pub mod key;
|
|
pub mod keyspace;
|
|
pub mod models;
|
|
pub mod reltag;
|
|
pub mod shard;
|
|
/// Public API types
|
|
pub mod upcall_api;
|
|
|
|
pub mod config;
|